/* Sorry for my english, it isn't my native language */
I'm following this wiki article in order to build GCC 4.6.1, enabling C and C++, but in this step:
Code: Select all
make all-gcc
As you can see, error messages are in Spanish (sorry), here is my translation, that might be incorrect:gcc -c -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.6.1/gcc -I../../gcc-4.6.1/gcc/. -I../../gcc-4.6.1/gcc/../include -I../../gcc-4.6.1/gcc/../libcpp/include -I../../gcc-4.6.1/gcc/../libdecnumber -I../../gcc-4.6.1/gcc/../libdecnumber/dpd -I../libdecnumber gtype-desc.c -o gtype-desc.o
gtype-desc.c:8868:18: error: el valor del subíndice no es ni matriz ni puntero ni vector
gtype-desc.c:8987:36: error: el valor del subíndice no es ni matriz ni puntero ni vector
gtype-desc.c:9071:31: error: el valor del subíndice no es ni matriz ni puntero ni vector
gtype-desc.c:9092:31: error: el valor del subíndice no es ni matriz ni puntero ni vector
gtype-desc.c:9099:31: error: el valor del subíndice no es ni matriz ni puntero ni vector
gtype-desc.c:9106:31: error: el valor del subíndice no es ni matriz ni puntero ni vector
I actually know C programming, but I'm not gonna get through the whole code to try to fix it.error: index value is neither a matrix nor a pointer nor a vector
Could you help me?