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