Hallo,
noch ein C-Neulingsproblem:
1 | make all
|
2 | 'Building file: ../src/tpmd/tpmd.c'
|
3 | 'Invoking: ARM Linux gcc compiler'
|
4 | arm-xilinx-linux-gnueabi-gcc -Wall -O0 -g3 -I"C:\MinGW\include" -c -fmessage-length=0 -MMD -MP -MF"src/tpmd/tpmd.d" -MT"src/tpmd/tpmd.d" -o "src/tpmd/tpmd.o" "../src/tpmd/tpmd.c"
|
Es scheint Probleme mit minGW stdio zu geben:
1 | In file included from ../src/tpmd/tpmd.c:17:0:
|
2 | C:\MinGW\include/stdio.h:165:39: error: expected ',' or ';' before 'fopen'
|
3 | C:\MinGW\include/stdio.h:166:39: error: expected ',' or ';' before 'freopen'
|
4 | C:\MinGW\include/stdio.h:167:13: error: conflicting types for '__cdecl'
|
5 | C:\MinGW\include/stdio.h:166:15: note: previous declaration of '__cdecl' was here
|
6 | C:\MinGW\include/stdio.h:167:37: error: expected ',' or ';' before 'fflush'
|
7 | C:\MinGW\include/stdio.h:168:13: error: conflicting types for '__cdecl'
|
8 | C:\MinGW\include/stdio.h:166:15: note: previous declaration of '__cdecl' was here
|
Und so wiederholen sich ähnliche Fehlermeldungen mehrere hundert mal.
Welchen Tipp habt ihr für einen Anfänger, was soll ich prüfen?