* [Buildroot] Fedora 16: Cannot find -lc
@ 2012-05-01 6:35 Alexander Broekhuis
2012-05-01 8:21 ` Arnout Vandecappelle
0 siblings, 1 reply; 4+ messages in thread
From: Alexander Broekhuis @ 2012-05-01 6:35 UTC (permalink / raw)
To: buildroot
Hi all,
I am trying to use buildroot on a Fedora 16 installation and run into the
following error:
/usr/bin/ld: cannot find -lc
collect2: ld returned 1 exit status
The last make command before the error:
make[2]: Entering directory
`/home/alexander/Development/buildroot/output/build/host-module-init-tools-3.15/build'
/usr/lib/ccache/gcc -O2
-I/home/alexander/Development/buildroot/output/host/include
-I/home/alexander/Development/buildroot/output/host/usr/include -Wunused
-Wall -static -L/home/alexander/Development/buildroot/output/host/lib
-L/home/alexander/Development/buildroot/output/host/usr/lib
-Wl,-rpath,/home/alexander/Development/buildroot/output/host/usr/lib -o
insmod.static insmod.o libmodtools.a
I am using the latest buildroot and also tried to use a snapshot release.
Is this a known bug, or am I doing something wrong?
Tia!
--
Met vriendelijke groet,
Alexander Broekhuis
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20120501/9bff22ba/attachment.html>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] Fedora 16: Cannot find -lc
2012-05-01 6:35 [Buildroot] Fedora 16: Cannot find -lc Alexander Broekhuis
@ 2012-05-01 8:21 ` Arnout Vandecappelle
2012-05-01 19:45 ` Thomas Petazzoni
0 siblings, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle @ 2012-05-01 8:21 UTC (permalink / raw)
To: buildroot
On 05/01/12 08:35, Alexander Broekhuis wrote:
> Hi all,
>
> I am trying to use buildroot on a Fedora 16 installation and run into
> the following error:
>
> /usr/bin/ld: cannot find -lc
> collect2: ld returned 1 exit status
>
> The last make command before the error:
> make[2]: Entering directory
> `/home/alexander/Development/buildroot/output/build/host-module-init-tools-3.15/build'
> /usr/lib/ccache/gcc -O2
> -I/home/alexander/Development/buildroot/output/host/include
> -I/home/alexander/Development/buildroot/output/host/usr/include -Wunused
> -Wall -static -L/home/alexander/Development/buildroot/output/host/lib
> -L/home/alexander/Development/buildroot/output/host/usr/lib
> -Wl,-rpath,/home/alexander/Development/buildroot/output/host/usr/lib -o
> insmod.static insmod.o libmodtools.a
I guess you need /usr/lib/libc.a installed on your build system. I
think it's in the glibc-static package on Fedora.
If that makes the difference, it definitely should be in the
documentation. (On Debian derivatives, libc.a is a dependency of the
compiler so it will be there.)
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] Fedora 16: Cannot find -lc
2012-05-01 8:21 ` Arnout Vandecappelle
@ 2012-05-01 19:45 ` Thomas Petazzoni
2012-05-01 19:58 ` Alexander Broekhuis
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2012-05-01 19:45 UTC (permalink / raw)
To: buildroot
Le Tue, 01 May 2012 10:21:21 +0200,
Arnout Vandecappelle <arnout@mind.be> a ?crit :
> If that makes the difference, it definitely should be in the
> documentation. (On Debian derivatives, libc.a is a dependency of the
> compiler so it will be there.)
Have a look at the second question in
http://buildroot.org/downloads/buildroot.html#faq :-)
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] Fedora 16: Cannot find -lc
2012-05-01 19:45 ` Thomas Petazzoni
@ 2012-05-01 19:58 ` Alexander Broekhuis
0 siblings, 0 replies; 4+ messages in thread
From: Alexander Broekhuis @ 2012-05-01 19:58 UTC (permalink / raw)
To: buildroot
Both thanks for the replies!
I can't understand how I missed it in the FAQ...
It now works as expected, thx!
2012/5/1 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> Le Tue, 01 May 2012 10:21:21 +0200,
> Arnout Vandecappelle <arnout@mind.be> a ?crit :
>
> > If that makes the difference, it definitely should be in the
> > documentation. (On Debian derivatives, libc.a is a dependency of the
> > compiler so it will be there.)
>
> Have a look at the second question in
> http://buildroot.org/downloads/buildroot.html#faq :-)
>
> Thomas
> --
> Thomas Petazzoni, Free Electrons
> Kernel, drivers, real-time and embedded Linux
> development, consulting, training and support.
> http://free-electrons.com
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
--
Met vriendelijke groet,
Alexander Broekhuis
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20120501/cef4ed4d/attachment.html>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-05-01 19:58 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-01 6:35 [Buildroot] Fedora 16: Cannot find -lc Alexander Broekhuis
2012-05-01 8:21 ` Arnout Vandecappelle
2012-05-01 19:45 ` Thomas Petazzoni
2012-05-01 19:58 ` Alexander Broekhuis
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.