This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: missing bigtoc-gcc-3.3.2
- From: Segher Boessenkool <segher at kernel dot crashing dot org>
- To: Carl Edward Baribault <cbaribau at cs dot uno dot edu>
- Cc: gcc-help at gcc dot gnu dot org
- Date: Tue, 28 Jul 2009 17:19:40 +0200
- Subject: Re: missing bigtoc-gcc-3.3.2
- References: <20090728061346.M73440@cs.uno.edu>
I'm attempting to compile and link my application code using gcc on
an AIX
platform with the option -bbigtoc, and I get the following response
(missing
bigtoc-gcc-3.3.2; see below) that I've cut and pasted below.
The failing command is from your Makefile:
gcc -bbigtoc -lm -W1 w30_m8520_viterbi_driver.o -o
w30_m8520_viterbi_driver
The -b option of GCC means "run a different version of the compiler".
I suspect you want to pass this -bbigtoc flag to the linker; the way
to write that for GCC is gcc -Wl,-bigtoc ....
Hope this helps,
Segher