* [Buildroot] Latest build problem
@ 2008-02-18 23:20 Tim Barr
2008-02-19 6:18 ` Ulf Samuelsson
0 siblings, 1 reply; 3+ messages in thread
From: Tim Barr @ 2008-02-18 23:20 UTC (permalink / raw)
To: buildroot
Here is the latest error I get when I try to make a buildroot. This time
I did clean and dir clean. And this is the error I get now:
mkdir -p /home/falingtrea/buildroot/build_arm_wchar/staging_dir/usr/bin
/home/falingtrea/buildroot/build_arm_wchar/staging_dir/usr/arm-linux-ucl
ibc/bin
/usr/bin/gcc -g -O2 .//toolchain/sstrip/sstrip.c -o
/home/falingtrea/buildroot/build_arm_wchar/staging_dir/usr/bin/arm-linux
-uclibc-sstrip
ln -snf ../../bin/arm-linux-uclibc-sstrip \
/home/falingtrea/buildroot/build_arm_wchar/staging_dir/usr/arm-linux-ucl
ibc/bin/sstrip
ln -snf arm-linux-uclibc-sstrip \
/home/falingtrea/buildroot/build_arm_wchar/staging_dir/usr/bin/arm-linux
-sstrip
/home/falingtrea/buildroot/build_arm_wchar/staging_dir/usr/bin/arm-linux
-uclibc-gcc -Os -pipe
-I/home/falingtrea/buildroot/build_arm_wchar/staging_dir/usr/include
-I/home/falingtrea/buildroot/build_arm_wchar/staging_dir/include
--sysroot=/home/falingtrea/buildroot/build_arm_wchar/staging_dir/
-isysroot /home/falingtrea/buildroot/build_arm_wchar/staging_dir
.//toolchain/sstrip/sstrip.c -o
/home/falingtrea/buildroot/project_build_arm_wchar/SuperModem-2.6.22.1/r
oot/usr/bin/sstrip
/home/falingtrea/buildroot/build_arm_wchar/staging_dir/usr/bin-ccache/..
/lib/gcc/arm-linux-uclibc/4.2.1/../../../../arm-linux-uclibc/bin/ld:
cannot open output file
/home/falingtrea/buildroot/project_build_arm_wchar/SuperModem-2.6.22.1/r
oot/usr/bin/sstrip: No such file or directory
collect2: ld returned 1 exit status
make: ***
[/home/falingtrea/buildroot/project_build_arm_wchar/SuperModem-2.6.22.1/
root/usr/bin/sstrip] Error 1
Any suggestions on what I can do to move forward would be appreciated.
Timothy Barr
Hardware Development Engineer
for Multi-Tech Systems, Inc.
<mailto:tbarr@multitech.com> tbarr at multitech.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://busybox.net/lists/buildroot/attachments/20080218/9bf74382/attachment.htm
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] Latest build problem
2008-02-18 23:20 [Buildroot] Latest build problem Tim Barr
@ 2008-02-19 6:18 ` Ulf Samuelsson
0 siblings, 0 replies; 3+ messages in thread
From: Ulf Samuelsson @ 2008-02-19 6:18 UTC (permalink / raw)
To: buildroot
> /home/falingtrea/buildroot/build_arm_wchar/staging_dir/usr/bin/arm-linux
> -uclibc-gcc -Os -pipe
> -I/home/falingtrea/buildroot/build_arm_wchar/staging_dir/usr/include
> -I/home/falingtrea/buildroot/build_arm_wchar/staging_dir/include
> --sysroot=/home/falingtrea/buildroot/build_arm_wchar/staging_dir/
> -isysroot /home/falingtrea/buildroot/build_arm_wchar/staging_dir
> .//toolchain/sstrip/sstrip.c -o
> /home/falingtrea/buildroot/project_build_arm_wchar/SuperModem-2.6.22.1/r
> oot/usr/bin/sstrip
[snip]
> Any suggestions on what I can do to move forward would be appreciated.
> Timothy Barr
You need to look at the rule generating this statement in package/SuperModem/SuperModem.mk
-o /home/falingtrea/buildroot/project_build_arm_wchar/SuperModem-2.6.22.1/r
oot/usr/bin/sstrip
It looks to me that it is defined as
-o $(SUPERMODEM_DIR)/root/usr/bin/sstrip
instead of
-o $(TARGET_DIR)/usr/bin/sstrip
or similar
Best Regards,
Ulf Samuelsson
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] Latest build problem
@ 2008-02-21 14:04 Tim Barr
0 siblings, 0 replies; 3+ messages in thread
From: Tim Barr @ 2008-02-21 14:04 UTC (permalink / raw)
To: buildroot
Well, I did a grep of the whole buildroot directory looking for
"/usr/bin/sstrip" and found two occurrences. One was a svn file and the
other was in "sstrip.mk". The specific line in sstrip.mk was:
SSTRIP_TARGET := $(TARGET_DIR)/usr/bin/sstrip
Which seems to be correct, so now I am really confused.
Timothy Barr
Hardware Development Engineer
for Multi-Tech Systems, Inc.
tbarr at multitech.com
> -----Original Message-----
> From: Ulf Samuelsson [mailto:ulf.samuelsson at atmel.com]
> Sent: Tuesday, February 19, 2008 12:18 AM
> To: Tim Barr; buildroot at uclibc.org
> Subject: Re: [Buildroot] Latest build problem
>
>
>
> >
> /home/falingtrea/buildroot/build_arm_wchar/staging_dir/usr/bin/arm-lin
> > ux
> > -uclibc-gcc -Os -pipe
> > -I/home/falingtrea/buildroot/build_arm_wchar/staging_dir/usr/include
> > -I/home/falingtrea/buildroot/build_arm_wchar/staging_dir/include
> > --sysroot=/home/falingtrea/buildroot/build_arm_wchar/staging_dir/
> > -isysroot /home/falingtrea/buildroot/build_arm_wchar/staging_dir
> > .//toolchain/sstrip/sstrip.c -o
> >
> /home/falingtrea/buildroot/project_build_arm_wchar/SuperModem-
> 2.6.22.1/r
> > oot/usr/bin/sstrip
>
> [snip]
>
> > Any suggestions on what I can do to move forward would be
> appreciated.
> > Timothy Barr
>
> You need to look at the rule generating this statement in
> package/SuperModem/SuperModem.mk
>
> -o
> /home/falingtrea/buildroot/project_build_arm_wchar/SuperModem-
> 2.6.22.1/r
> oot/usr/bin/sstrip
>
> It looks to me that it is defined as
> -o $(SUPERMODEM_DIR)/root/usr/bin/sstrip
> instead of
> -o $(TARGET_DIR)/usr/bin/sstrip
> or similar
>
>
> Best Regards,
> Ulf Samuelsson
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-02-21 14:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-18 23:20 [Buildroot] Latest build problem Tim Barr
2008-02-19 6:18 ` Ulf Samuelsson
-- strict thread matches above, loose matches on Subject: below --
2008-02-21 14:04 Tim Barr
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox