------- Comment #1 from amonakov at gcc dot gnu dot org 2010-05-13 14:46 ------- > r...@matylda1: /mnt/data/kasparek# LC_ALL=C gcc -o test.o test-10356.c > cc1: error: test-10356.c: Value too large for defined data type
> The first this I need to help with is how to > check if the code that causes this (expect somewhere is used 32bit variable to > store the inode) is from gcc itself or it is some third-party library. I Execute gcc -o test.o test-10356.c -### 2>&1 | grep cc1 to get the cc1 command line. Then use gdb --args <cc1 cmdline> to debug the compiler. Getting a backtrace before the abort would be nice. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44116