Date: Mon, 27 Nov 2000 12:11:16 -0500 From: Andrew Otwell <aotwell@iss.net> To: Steve Kargl <sgk@troutmask.apl.washington.edu> Cc: hackers@FreeBSD.ORG Subject: Re: porting Linux application to FreeBSD Message-ID: <3A2295B4.A23CA0C9@iss.net> References: <200011271635.eARGZQw29552@troutmask.apl.washington.edu>
next in thread | previous in thread | raw e-mail | index | archive | help
when I specify "-bloadmap" I get the following output.... int main() { printf("Hello World!!!!!!!\n"); } *Initialization*:1: warning: `__FreeBSD__' redefined *Initialization*:1: warning: this is the location of the previous definition # 1 "/var/tmp/ccWwDByf.i" gcc: installation problem, cannot exec `cc1': No such file or directory gcc: file path prefix `/usr/local/lib/gcc-lib/loadmap/2.95.2/' never used I then ran "locate cc1" and found a binary in /usr/libexec/cc1 "man -k cc1" yields "nothing appropriate". Steve Kargl wrote: > > Andrew Otwell wrote: > > > > A couple of you answered my first query which gave me.... > > > > gcc -nostdinc -I/includedir -nostdlib -L/libdir source.c > > > > This always failed with either.... > > > > ld: No reference to __DYNAMIC > > collect2: ld returned 1 exit status > > > > info gcc > > gcc -v -static -nostdinc -I/includedir -nostdlib source.c \ > -L/libdir -lfirstlib -lsecondlib .... -lc > > The -v flag will show you all aspects of the linking of > your program. The -static flags make gcc use static linking. > The -nostdlib suppress the normal linking of libraries > usually supplied by the system. This means you have to > explicitly list all libraries on the command including the > standard C library. > > -- > Steve -- Andrew Otwell, MSS Special Ops Recon/Surveillance/Developer desk 678.443.6271, aotwell@iss.net, http://www.iss.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3A2295B4.A23CA0C9>