![]() |
[QUOTE=Lorenzo;454692]Yes. Sure.
[CODE]ubuntu@pine64:~/Solaris/mlucas-14.1$ ubuntu@pine64:~/Solaris/mlucas-14.1$ sudo ./configure checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking whether gcc understands -c and -o together... yes checking for style of include used by make... GNU checking dependency style of gcc... none checking for library containing ceil, log, pow, sqrt, sincos, floor, lrint, atan... -lm checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking fenv.h usability... yes checking fenv.h presence... yes checking for fenv.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking mach/mach.h usability... no checking mach/mach.h presence... no checking for mach/mach.h... no checking stddef.h usability... yes checking stddef.h presence... yes checking for stddef.h... yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking for unistd.h... (cached) yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking for inline... inline checking for pid_t... yes checking for size_t... yes checking for uint64_t... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible realloc... yes checking for clock_gettime... yes checking for gethrtime... no checking for gettimeofday... yes checking for memset... yes checking for pow... yes checking for sqrt... yes checking for strerror... yes checking for strstr... yes checking for strtoul... yes checking whether _LARGEFILE_SOURCE is declared... no checking build system type... aarch64-unknown-linux-gnu checking host system type... aarch64-unknown-linux-gnu checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: executing depfiles commands ubuntu@pine64:~/Solaris/mlucas-14.1$ sudo make make all-am make[1]: Entering directory '/home/ubuntu/Solaris/mlucas-14.1' CC $NORMAL_O $THREADS_O Makefile:2984: recipe for target 'NORMAL_O-THREADS_O.stamp' failed make[1]: *** [NORMAL_O-THREADS_O.stamp] Error 1 make[1]: Leaving directory '/home/ubuntu/Solaris/mlucas-14.1' Makefile:2084: recipe for target 'all' failed make: *** [all] Error 2 [/CODE][/QUOTE] Hello Lorenzo, Could you try to run [CODE]$ ./configure --enable-verbose-compiler && make[/CODE] as well? (I really should have made that option default!) Also, as David has pointed out, in general, you shouldn't be building software with root privilege. You only need root privilege when you install software. |
Looks like this device is working in 64 mode. So it's ok.
[CODE]ubuntu@pine64:~/Solaris/mlucas-14.1/src/MY_OBJ$ uname -a Linux pine64 3.10.104-2-pine64-longsleep #113 SMP PREEMPT Thu Dec 15 21:46:07 CET 2016 aarch64 aarch64 aarch64 GNU/Linux[/CODE] But i don't undertand: [QUOTE]Also check the march= and mtune= values. And mcpu=native [/QUOTE] Where is it? |
I did compilation as Alex have suggested. Looks like the problem in multithreading. I've recieved a lot of such error.
[CODE]./src/twopmodq80.c:2957:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ In file included from ./src/types.h:30:0, from ./src/util.h:30, from ./src/factor.h:29, from ./src/twopmodq96.c:23: ./src/platform.h:1072:4: error: #error Multithreading currently only supported for Linux/GCC builds! #error Multithreading currently only supported for Linux/GCC builds! ^ In file included from ./src/types.h:30:0, from ./src/util.h:30, from ./src/factor.h:29, from ./src/twopmodq.c:23: ./src/platform.h:1072:4: error: #error Multithreading currently only supported for Linux/GCC builds! #error Multithreading currently only supported for Linux/GCC builds! ^ [/CODE] Log from terminal: [CODE] ^ ./src/twopmodq80.c:342:2: note: in expansion of macro ‘RSHIFT192’ RSHIFT192(prod192,78,prod192); ^ ./src/imul_macro1.h:539:54: warning: left shift count is negative [-Wshift-count-negative] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:342:2: note: in expansion of macro ‘RSHIFT192’ RSHIFT192(prod192,78,prod192); ^ ./src/imul_macro1.h:540:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d2 = ((uint64)__x.d2 >> __n);\ ^ ./src/twopmodq80.c:342:2: note: in expansion of macro ‘RSHIFT192’ RSHIFT192(prod192,78,prod192); ^ ./src/imul_macro1.h:556:28: warning: right shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d2 >> (__n-128));\ ^ ./src/twopmodq80.c:342:2: note: in expansion of macro ‘RSHIFT192’ RSHIFT192(prod192,78,prod192); ^ ./src/twopmodq80.c: In function ‘twopmodq78_3WORD_DOUBLE_q2’: ./src/imul_macro1.h:538:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:811:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:538:54: warning: left shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:811:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:539:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:811:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:539:54: warning: left shift count is negative [-Wshift-count-negative] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:811:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:540:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d2 = ((uint64)__x.d2 >> __n);\ ^ ./src/twopmodq80.c:811:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:556:28: warning: right shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d2 >> (__n-128));\ ^ ./src/twopmodq80.c:811:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:538:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:812:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:538:54: warning: left shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:812:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:539:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:812:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:539:54: warning: left shift count is negative [-Wshift-count-negative] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:812:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:540:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d2 = ((uint64)__x.d2 >> __n);\ ^ ./src/twopmodq80.c:812:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:556:28: warning: right shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d2 >> (__n-128));\ ^ ./src/twopmodq80.c:812:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/twopmodq80.c: In function ‘twopmodq78_3WORD_DOUBLE_q4’: ./src/imul_macro1.h:538:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2210:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:538:54: warning: left shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2210:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:539:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2210:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:539:54: warning: left shift count is negative [-Wshift-count-negative] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2210:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:540:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d2 = ((uint64)__x.d2 >> __n);\ ^ ./src/twopmodq80.c:2210:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:556:28: warning: right shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d2 >> (__n-128));\ ^ ./src/twopmodq80.c:2210:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:538:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2211:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:538:54: warning: left shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2211:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:539:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2211:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:539:54: warning: left shift count is negative [-Wshift-count-negative] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2211:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:540:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d2 = ((uint64)__x.d2 >> __n);\ ^ ./src/twopmodq80.c:2211:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:556:28: warning: right shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d2 >> (__n-128));\ ^ ./src/twopmodq80.c:2211:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:538:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2212:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q2,lo2,prod192); RSHIFT192(prod192,78,prod192); lo2.d0 = pr ^ ./src/imul_macro1.h:538:54: warning: left shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2212:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q2,lo2,prod192); RSHIFT192(prod192,78,prod192); lo2.d0 = pr ^ ./src/imul_macro1.h:539:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2212:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q2,lo2,prod192); RSHIFT192(prod192,78,prod192); lo2.d0 = pr ^ ./src/imul_macro1.h:539:54: warning: left shift count is negative [-Wshift-count-negative] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2212:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q2,lo2,prod192); RSHIFT192(prod192,78,prod192); lo2.d0 = pr ^ ./src/imul_macro1.h:540:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d2 = ((uint64)__x.d2 >> __n);\ ^ ./src/twopmodq80.c:2212:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q2,lo2,prod192); RSHIFT192(prod192,78,prod192); lo2.d0 = pr ^ ./src/imul_macro1.h:556:28: warning: right shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d2 >> (__n-128));\ ^ ./src/twopmodq80.c:2212:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q2,lo2,prod192); RSHIFT192(prod192,78,prod192); lo2.d0 = pr ^ ./src/imul_macro1.h:538:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2213:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ ./src/imul_macro1.h:538:54: warning: left shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2213:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ ./src/imul_macro1.h:539:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2213:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ ./src/imul_macro1.h:539:54: warning: left shift count is negative [-Wshift-count-negative] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2213:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ ./src/imul_macro1.h:540:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d2 = ((uint64)__x.d2 >> __n);\ ^ ./src/twopmodq80.c:2213:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ ./src/imul_macro1.h:556:28: warning: right shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d2 >> (__n-128));\ ^ ./src/twopmodq80.c:2213:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ ./src/twopmodq80.c: In function ‘twopmodq78_3WORD_DOUBLE_q4_REF’: ./src/imul_macro1.h:538:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2954:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:538:54: warning: left shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2954:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:539:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2954:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:539:54: warning: left shift count is negative [-Wshift-count-negative] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2954:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:540:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d2 = ((uint64)__x.d2 >> __n);\ ^ ./src/twopmodq80.c:2954:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:556:28: warning: right shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d2 >> (__n-128));\ ^ ./src/twopmodq80.c:2954:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q0,lo0,prod192); RSHIFT192(prod192,78,prod192); lo0.d0 = pr ^ ./src/imul_macro1.h:538:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2955:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:538:54: warning: left shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2955:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:539:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2955:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:539:54: warning: left shift count is negative [-Wshift-count-negative] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2955:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:540:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d2 = ((uint64)__x.d2 >> __n);\ ^ ./src/twopmodq80.c:2955:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:556:28: warning: right shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d2 >> (__n-128));\ ^ ./src/twopmodq80.c:2955:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q1,lo1,prod192); RSHIFT192(prod192,78,prod192); lo1.d0 = pr ^ ./src/imul_macro1.h:538:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2956:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q2,lo2,prod192); RSHIFT192(prod192,78,prod192); lo2.d0 = pr ^ ./src/imul_macro1.h:538:54: warning: left shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2956:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q2,lo2,prod192); RSHIFT192(prod192,78,prod192); lo2.d0 = pr ^ ./src/imul_macro1.h:539:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2956:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q2,lo2,prod192); RSHIFT192(prod192,78,prod192); lo2.d0 = pr ^ ./src/imul_macro1.h:539:54: warning: left shift count is negative [-Wshift-count-negative] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2956:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q2,lo2,prod192); RSHIFT192(prod192,78,prod192); lo2.d0 = pr ^ ./src/imul_macro1.h:540:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d2 = ((uint64)__x.d2 >> __n);\ ^ ./src/twopmodq80.c:2956:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q2,lo2,prod192); RSHIFT192(prod192,78,prod192); lo2.d0 = pr ^ ./src/imul_macro1.h:556:28: warning: right shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d2 >> (__n-128));\ ^ ./src/twopmodq80.c:2956:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q2,lo2,prod192); RSHIFT192(prod192,78,prod192); lo2.d0 = pr ^ ./src/imul_macro1.h:538:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2957:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ ./src/imul_macro1.h:538:54: warning: left shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d0 >> __n) + ((uint64)__x.d1 << (64-__n));\ ^ ./src/twopmodq80.c:2957:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ ./src/imul_macro1.h:539:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2957:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ ./src/imul_macro1.h:539:54: warning: left shift count is negative [-Wshift-count-negative] __y.d1 = ((uint64)__x.d1 >> __n) + ((uint64)__x.d2 << (64-__n));\ ^ ./src/twopmodq80.c:2957:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ ./src/imul_macro1.h:540:28: warning: right shift count >= width of type [-Wshift-count-overflow] __y.d2 = ((uint64)__x.d2 >> __n);\ ^ ./src/twopmodq80.c:2957:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ ./src/imul_macro1.h:556:28: warning: right shift count is negative [-Wshift-count-negative] __y.d0 = ((uint64)__x.d2 >> (__n-128));\ ^ ./src/twopmodq80.c:2957:38: note: in expansion of macro ‘RSHIFT192’ MUL_LOHI96_PROD192(q3,lo3,prod192); RSHIFT192(prod192,78,prod192); lo3.d0 = pr ^ In file included from ./src/types.h:30:0, from ./src/util.h:30, from ./src/factor.h:29, from ./src/twopmodq96.c:23: ./src/platform.h:1072:4: error: #error Multithreading currently only supported for Linux/GCC builds! #error Multithreading currently only supported for Linux/GCC builds! ^ In file included from ./src/types.h:30:0, from ./src/util.h:30, from ./src/factor.h:29, from ./src/twopmodq.c:23: ./src/platform.h:1072:4: error: #error Multithreading currently only supported for Linux/GCC builds! #error Multithreading currently only supported for Linux/GCC builds! ^ In file included from ./src/types.h:30:0, from ./src/types.c:23: ./src/platform.h:1072:4: error: #error Multithreading currently only supported for Linux/GCC builds! #error Multithreading currently only supported for Linux/GCC builds! ^ In file included from ./src/types.h:30:0, from ./src/threadpool.h:69, from ./src/threadpool.c:65: ./src/platform.h:1072:4: error: #error Multithreading currently only supported for Linux/GCC builds! #error Multithreading currently only supported for Linux/GCC builds! ^ ./src/threadpool.c:265:1: warning: ‘force_align_arg_pointer’ attribute directive ignored [-Wattributes] { ^ ./src/threadpool.c: In function ‘worker_thr_routine’: ./src/threadpool.c:312:20: warning: implicit declaration of function ‘syscall’ [-Wimplicit-function-declaration] pid_t thread_id = syscall (__NR_gettid); ^ ./src/threadpool.c:312:29: error: ‘__NR_gettid’ undeclared (first use in this function) pid_t thread_id = syscall (__NR_gettid); ^ ./src/threadpool.c:312:29: note: each undeclared identifier is reported only once for each function it appears in ./src/threadpool.c:316:2: warning: implicit declaration of function ‘CPU_ZERO’ [-Wimplicit-function-declaration] CPU_ZERO (&cpu_set); ^ ./src/threadpool.c:318:2: warning: implicit declaration of function ‘CPU_SET’ [-Wimplicit-function-declaration] CPU_SET(i, &cpu_set); ^ ./src/threadpool.c:319:12: warning: implicit declaration of function ‘sched_setaffinity’ [-Wimplicit-function-declaration] errcode = sched_setaffinity(thread_id, sizeof(cpu_set), &cpu_set); ^ ./src/threadpool.c:320:90: warning: implicit declaration of function ‘CPU_ISSET’ [-Wimplicit-function-declaration] %u, setaffinity[%d] = %d, ISSET[%d] = %d\n", thread_id,i,errcode,i,CPU_ISSET(i ^ make[1]: *** [NORMAL_O-THREADS_O.stamp] Error 1 make: *** [all] Error 2 ubuntu@pine64:~/Solaris2/mlucas-14.1$ [/CODE] |
Problems related to Aarch64, GCC, autoconf and threads have been noticed through the web :smile: and corrected.
[url]http://people.linaro.org/~rikuvoipio/aarch64-talk/#/11[/url] I am sure the one you are experimenting will be ironed off in a short while. That's the beauty of code porting... |
I guess the problem is that aarch64 (aka arm64) is not in platform.h yet. Maybe we should to add it and see if it works.
|
[QUOTE=Lorenzo;454737]Looks like this device is working in 64 mode. So it's ok.
[CODE]ubuntu@pine64:~/Solaris/mlucas-14.1/src/MY_OBJ$ uname -a Linux pine64 3.10.104-2-pine64-longsleep #113 SMP PREEMPT Thu Dec 15 21:46:07 CET 2016 aarch64 aarch64 aarch64 GNU/Linux[/CODE] But i don't undertand: Where is it?[/QUOTE] They are GCC switches. |
1 Attachment(s)
Good news, I manage to reproduce it on QEMU(aarch64).
|
1 Attachment(s)
Lorenzo, based on your single-file compile attempt it appears your issue is due to the code in platform.h not having the magic predefines for your arch, which then means the associated GCC-predefs are not invoked, which leads to your multithread-related error message.
Please try the following 2 things: [1] Do a quick compile-single-file with the flags set which cause the preprocessor to dump all of its predefines: 'gcc -dM -E - < /dev/null', and post the output here. [2] My (and Dave and Alex's) current working copies of platform.h do have added code for aarch64 recognition - download the attached version of the file and do a 'grep -i aarch64' to see that, then repeat your single-file compile try (not the version in [1], the actual build attempt) with that version of the .h placed in your src-dir. I'm not familiar enough with ARM to understand why -m64 is unsupported in GCC, but correctly handling aarch64 in platform.h will cause the build to be in 64-bit mode. (I had assumed -m64 was needed to trigger the aarch64-related predefs, but your output from [1] will settle that.) |
[QUOTE=ewmayer;454769]Lorenzo, based on your single-file compile attempt it appears your issue is due to the code in platform.h not having the magic predefines for your arch, which then means the associated GCC-predefs are not invoked, which leads to your multithread-related error message.
Please try the following 2 things: [1] Do a quick compile-single-file with the flags set which cause the preprocessor to dump all of its predefines: 'gcc -dM -E - < /dev/null', and post the output here. [2] My (and Dave and Alex's) current working copies of platform.h do have added code for aarch64 recognition - download the attached version of the file and do a 'grep -i aarch64' to see that, then repeat your single-file compile try (not the version in [1], the actual build attempt) with that version of the .h placed in your src-dir. I'm not familiar enough with ARM to understand why -m64 is unsupported in GCC, but correctly handling aarch64 in platform.h will cause the build to be in 64-bit mode. (I had assumed -m64 was needed to trigger the aarch64-related predefs, but your output from [1] will settle that.)[/QUOTE] Ok! I have done! [CODE]ubuntu@pine64:~/Solaris2/mlucas-14.1$ gcc -dM -E - < /dev/null #define __SSP_STRONG__ 3 #define __DBL_MIN_EXP__ (-1021) #define __UINT_LEAST16_MAX__ 0xffff #define __ARM_SIZEOF_WCHAR_T 4 #define __ATOMIC_ACQUIRE 2 #define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F #define __GCC_IEC_559_COMPLEX 2 #define __UINT_LEAST8_TYPE__ unsigned char #define __INTMAX_C(c) c ## L #define __CHAR_BIT__ 8 #define __UINT8_MAX__ 0xff #define __WINT_MAX__ 0xffffffffU #define __ORDER_LITTLE_ENDIAN__ 1234 #define __SIZE_MAX__ 0xffffffffffffffffUL #define __WCHAR_MAX__ 0xffffffffU #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 #define __DBL_DENORM_MIN__ ((double)4.94065645841246544176568792868221372e-324L) #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 #define __GCC_ATOMIC_CHAR_LOCK_FREE 2 #define __GCC_IEC_559 2 #define __FLT_EVAL_METHOD__ 0 #define __unix__ 1 #define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 #define __UINT_FAST64_MAX__ 0xffffffffffffffffUL #define __SIG_ATOMIC_TYPE__ int #define __DBL_MIN_10_EXP__ (-307) #define __FINITE_MATH_ONLY__ 0 #define __ARM_FEATURE_UNALIGNED 1 #define __GNUC_PATCHLEVEL__ 0 #define __UINT_FAST8_MAX__ 0xff #define __has_include(STR) __has_include__(STR) #define __DEC64_MAX_EXP__ 385 #define __INT8_C(c) c #define __UINT_LEAST64_MAX__ 0xffffffffffffffffUL #define __SHRT_MAX__ 0x7fff #define __LDBL_MAX__ 1.18973149535723176508575932662800702e+4932L #define __ARM_FEATURE_IDIV 1 #define __ARM_FP 14 #define __UINT_LEAST8_MAX__ 0xff #define __GCC_ATOMIC_BOOL_LOCK_FREE 2 #define __UINTMAX_TYPE__ long unsigned int #define __linux 1 #define __DEC32_EPSILON__ 1E-6DF #define __CHAR_UNSIGNED__ 1 #define __UINT32_MAX__ 0xffffffffU #define __AARCH64_CMODEL_SMALL__ 1 #define __LDBL_MAX_EXP__ 16384 #define __WINT_MIN__ 0U #define __linux__ 1 #define __SCHAR_MAX__ 0x7f #define __WCHAR_MIN__ 0U #define __INT64_C(c) c ## L #define __DBL_DIG__ 15 #define __GCC_ATOMIC_POINTER_LOCK_FREE 2 #define __SIZEOF_INT__ 4 #define __SIZEOF_POINTER__ 8 #define __USER_LABEL_PREFIX__ #define __STDC_HOSTED__ 1 #define __LDBL_HAS_INFINITY__ 1 #define __ARM_ALIGN_MAX_STACK_PWR 16 #define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F #define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L #define __STDC_UTF_16__ 1 #define __DEC32_MAX__ 9.999999E96DF #define __ARM_SIZEOF_MINIMAL_ENUM 4 #define __INT32_MAX__ 0x7fffffff #define __SIZEOF_LONG__ 8 #define __STDC_IEC_559__ 1 #define __STDC_ISO_10646__ 201505L #define __UINT16_C(c) c #define __DECIMAL_DIG__ 36 #define __gnu_linux__ 1 #define __has_include_next(STR) __has_include_next__(STR) #define __LDBL_HAS_QUIET_NAN__ 1 #define __GNUC__ 5 #define __FLT_HAS_DENORM__ 1 #define __SIZEOF_LONG_DOUBLE__ 16 #define __BIGGEST_ALIGNMENT__ 16 #define __DBL_MAX__ ((double)1.79769313486231570814527423731704357e+308L) #define __INT_FAST32_MAX__ 0x7fffffffffffffffL #define __DBL_HAS_INFINITY__ 1 #define __DEC32_MIN_EXP__ (-94) #define __INT_FAST16_TYPE__ long int #define __LDBL_HAS_DENORM__ 1 #define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL #define __INT_LEAST32_MAX__ 0x7fffffff #define __DEC32_MIN__ 1E-95DF #define __DBL_MAX_EXP__ 1024 #define __DEC128_EPSILON__ 1E-33DL #define __PTRDIFF_MAX__ 0x7fffffffffffffffL #define __STDC_NO_THREADS__ 1 #define __LONG_LONG_MAX__ 0x7fffffffffffffffLL #define __SIZEOF_SIZE_T__ 8 #define __ARM_ALIGN_MAX_PWR 28 #define __SIZEOF_WINT_T__ 4 #define __ARM_FP16_FORMAT_IEEE 1 #define __GXX_ABI_VERSION 1009 #define __FLT_MIN_EXP__ (-125) #define __INT_FAST64_TYPE__ long int #define __FP_FAST_FMAF 1 #define __DBL_MIN__ ((double)2.22507385850720138309023271733240406e-308L) #define __LP64__ 1 #define __aarch64__ 1 #define __ARM_FP16_ARGS 1 #define __DEC128_MIN__ 1E-6143DL #define __REGISTER_PREFIX__ #define __UINT16_MAX__ 0xffff #define __DBL_HAS_DENORM__ 1 #define __UINT8_TYPE__ unsigned char #define __NO_INLINE__ 1 #define __FLT_MANT_DIG__ 24 #define __VERSION__ "5.4.0 20160609" #define __UINT64_C(c) c ## UL #define _STDC_PREDEF_H 1 #define __ARM_FEATURE_FMA 1 #define __GCC_ATOMIC_INT_LOCK_FREE 2 #define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ #define __STDC_IEC_559_COMPLEX__ 1 #define __INT32_C(c) c #define __DEC64_EPSILON__ 1E-15DD #define __ORDER_PDP_ENDIAN__ 3412 #define __DEC128_MIN_EXP__ (-6142) #define __ARM_64BIT_STATE 1 #define __INT_FAST32_TYPE__ long int #define __UINT_LEAST16_TYPE__ short unsigned int #define unix 1 #define __INT16_MAX__ 0x7fff #define __SIZE_TYPE__ long unsigned int #define __UINT64_MAX__ 0xffffffffffffffffUL #define __INT8_TYPE__ signed char #define __ELF__ 1 #define __FLT_RADIX__ 2 #define __INT_LEAST16_TYPE__ short int #define __ARM_ARCH_PROFILE 65 #define __LDBL_EPSILON__ 1.92592994438723585305597794258492732e-34L #define __UINTMAX_C(c) c ## UL #define __ARM_PCS_AAPCS64 1 #define __SIG_ATOMIC_MAX__ 0x7fffffff #define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 #define __SIZEOF_PTRDIFF_T__ 8 #define __AARCH64EL__ 1 #define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF #define __INT_FAST16_MAX__ 0x7fffffffffffffffL #define __UINT_FAST32_MAX__ 0xffffffffffffffffUL #define __UINT_LEAST64_TYPE__ long unsigned int #define __FLT_HAS_QUIET_NAN__ 1 #define __FLT_MAX_10_EXP__ 38 #define __LONG_MAX__ 0x7fffffffffffffffL #define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL #define __FLT_HAS_INFINITY__ 1 #define __unix 1 #define __UINT_FAST16_TYPE__ long unsigned int #define __DEC64_MAX__ 9.999999999999999E384DD #define __CHAR16_TYPE__ short unsigned int #define __PRAGMA_REDEFINE_EXTNAME 1 #define __INT_LEAST16_MAX__ 0x7fff #define __DEC64_MANT_DIG__ 16 #define __INT64_MAX__ 0x7fffffffffffffffL #define __UINT_LEAST32_MAX__ 0xffffffffU #define __GCC_ATOMIC_LONG_LOCK_FREE 2 #define __INT_LEAST64_TYPE__ long int #define __ARM_FEATURE_CLZ 1 #define __INT16_TYPE__ short int #define __INT_LEAST8_TYPE__ signed char #define __STDC_VERSION__ 201112L #define __DEC32_MAX_EXP__ 97 #define __INT_FAST8_MAX__ 0x7f #define __ARM_ARCH 8 #define __INTPTR_MAX__ 0x7fffffffffffffffL #define linux 1 #define __LDBL_MANT_DIG__ 113 #define __DBL_HAS_QUIET_NAN__ 1 #define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) #define __INTPTR_TYPE__ long int #define __UINT16_TYPE__ short unsigned int #define __WCHAR_TYPE__ unsigned int #define __SIZEOF_FLOAT__ 4 #define __UINTPTR_MAX__ 0xffffffffffffffffUL #define __ARM_ARCH_8A 1 #define __DEC64_MIN_EXP__ (-382) #define __INT_FAST64_MAX__ 0x7fffffffffffffffL #define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 #define __FLT_DIG__ 6 #define __UINT_FAST64_TYPE__ long unsigned int #define __INT_MAX__ 0x7fffffff #define __INT64_TYPE__ long int #define __FLT_MAX_EXP__ 128 #define __ORDER_BIG_ENDIAN__ 4321 #define __DBL_MANT_DIG__ 53 #define __INT_LEAST64_MAX__ 0x7fffffffffffffffL #define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 #define __DEC64_MIN__ 1E-383DD #define __WINT_TYPE__ unsigned int #define __UINT_LEAST32_TYPE__ unsigned int #define __SIZEOF_SHORT__ 2 #define __LDBL_MIN_EXP__ (-16381) #define __INT_LEAST8_MAX__ 0x7f #define __SIZEOF_INT128__ 16 #define __LDBL_MAX_10_EXP__ 4932 #define __ATOMIC_RELAXED 0 #define __DBL_EPSILON__ ((double)2.22044604925031308084726333618164062e-16L) #define _LP64 1 #define __UINT8_C(c) c #define __INT_LEAST32_TYPE__ int #define __SIZEOF_WCHAR_T__ 4 #define __UINT64_TYPE__ long unsigned int #define __ARM_NEON 1 #define __INT_FAST8_TYPE__ signed char #define __GNUC_STDC_INLINE__ 1 #define __DBL_DECIMAL_DIG__ 17 #define __STDC_UTF_32__ 1 #define __DEC_EVAL_METHOD__ 2 #define __UINT32_C(c) c ## U #define __INTMAX_MAX__ 0x7fffffffffffffffL #define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ #define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F #define __INT8_MAX__ 0x7f #define __UINT_FAST32_TYPE__ long unsigned int #define __CHAR32_TYPE__ unsigned int #define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F #define __FP_FAST_FMA 1 #define __ARM_FEATURE_NUMERIC_MAXMIN 1 #define __INT32_TYPE__ int #define __SIZEOF_DOUBLE__ 8 #define __FLT_MIN_10_EXP__ (-37) #define __INTMAX_TYPE__ long int #define __DEC128_MAX_EXP__ 6145 #define __ATOMIC_CONSUME 1 #define __GNUC_MINOR__ 4 #define __UINTMAX_MAX__ 0xffffffffffffffffUL #define __DEC32_MANT_DIG__ 7 #define __DBL_MAX_10_EXP__ 308 #define __LDBL_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966L #define __INT16_C(c) c #define __ARM_ARCH_ISA_A64 1 #define __STDC__ 1 #define __PTRDIFF_TYPE__ long int #define __ATOMIC_SEQ_CST 5 #define __UINT32_TYPE__ unsigned int #define __UINTPTR_TYPE__ long unsigned int #define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD #define __DEC128_MANT_DIG__ 34 #define __LDBL_MIN_10_EXP__ (-4931) #define __SIZEOF_LONG_LONG__ 8 #define __GCC_ATOMIC_LLONG_LOCK_FREE 2 #define __LDBL_DIG__ 33 #define __FLT_DECIMAL_DIG__ 9 #define __UINT_FAST16_MAX__ 0xffffffffffffffffUL #define __GCC_ATOMIC_SHORT_LOCK_FREE 2 #define __UINT_FAST8_TYPE__ unsigned char #define __ATOMIC_ACQ_REL 4 #define __ATOMIC_RELEASE 3 [/CODE] |
When I have tried to compile with new version platform.h i get huge count of next errors:
[CODE] ./src/platform.h:89:1: error: stray ‘\203’ in program ./src/platform.h:89:1: error: stray ‘\313’ in program ./src/platform.h:89:1: error: stray ‘\254’ in program ./src/platform.h:89:1: error: stray ‘\336’ in program ./src/platform.h:89:1: error: stray ‘\306’ in program ./src/platform.h:89:1: error: stray ‘\327’ in program ./src/platform.h:89:1: error: stray ‘\263’ in program ./src/platform.h:89:115: error: stray ‘@’ in program ./src/platform.h:89:1: error: stray ‘\340’ in program ./src/platform.h:89:1: error: stray ‘\270’ in program ./src/platform.h:89:1: error: stray ‘\253’ in program ./src/platform.h:89:1: error: stray ‘\305’ in program ./src/platform.h:89:1: error: stray ‘\201’ in program ./src/platform.h:89:1: error: stray ‘\253’ in program ./src/platform.h:89:1: error: stray ‘\346’ in program ./src/platform.h:89:1: error: stray ‘\2’ in program ./src/platform.h:89:1: error: stray ‘\31’ in program ./src/platform.h:89:133: error: stray ‘@’ in program ./src/platform.h:89:1: error: stray ‘\5’ in program ./src/platform.h:89:1: error: stray ‘\20’ in program ./src/platform.h:89:1: error: stray ‘\260’ in program ./src/platform.h:89:1: error: stray ‘\375’ in program ./src/platform.h:89:1: error: stray ‘\250’ in program ./src/platform.h:89:1: error: stray ‘\225’ in program ./src/platform.h:89:1: error: stray ‘\6’ in program ./src/platform.h:89:1: error: stray ‘\243’ in program ./src/platform.h:89:1: error: stray ‘\26’ in program ./src/platform.h:89:1: error: stray ‘\20’ in program ./src/platform.h:89:1: error: stray ‘\262’ in program ./src/platform.h:89:1: error: stray ‘\22’ in program ./src/platform.h:89:1: error: stray ‘\20’ in program ./src/platform.h:89:1: error: stray ‘\16’ in program ./src/platform.h:89:1: error: stray ‘\30’ in program ./src/platform.h:89:1: error: stray ‘\222’ in program ./src/platform.h:89:1: error: stray ‘\252’ in program ./src/platform.h:89:1: error: stray ‘\231’ in program ./src/platform.h:89:1: error: stray ‘\347’ in program ./src/platform.h:89:1: error: stray ‘\24’ in program ./src/platform.h:89:1: error: stray ‘\355’ in program ./src/platform.h:89:1: error: stray ‘\245’ in program ./src/platform.h:89:1: error: stray ‘\31’ in program ./src/platform.h:89:1: error: stray ‘\236’ in program ./src/platform.h:89:1: error: stray ‘\203’ in program ./src/platform.h:89:1: error: stray ‘\231’ in program ./src/platform.h:89:1: error: stray ‘\324’ in program ./src/platform.h:89:1: error: stray ‘\345’ in program ./src/platform.h:89:1: error: stray ‘\236’ in program ./src/platform.h:89:1: error: stray ‘\7’ in program ./src/platform.h:89:1: error: stray ‘\361’ in program ./src/platform.h:89:1: error: stray ‘\224’ in program ./src/platform.h:89:1: error: stray ‘\24’ in program ./src/platform.h:89:1: error: stray ‘\7’ in program ./src/platform.h:89:1: error: stray ‘\247’ in program ./src/platform.h:89:1: error: stray ‘\356’ in program ./src/platform.h:89:1: error: stray ‘\355’ in program ./src/platform.h:89:1: error: stray ‘\331’ in program ./src/platform.h:89:1: error: stray ‘\313’ in program ./src/platform.h:89:1: error: stray ‘\325’ in program ./src/platform.h:89:1: error: stray ‘\253’ in program ./src/platform.h:89:1: error: stray ‘\10’ in program ./src/platform.h:89:1: error: stray ‘\246’ in program ./src/platform.h:89:1: error: stray ‘\233’ in program ./src/platform.h:89:1: error: stray ‘\342’ in program ./src/platform.h:89:1: error: stray ‘\366’ in program ./src/platform.h:89:1: error: stray ‘\242’ in program ./src/platform.h:89:1: error: stray ‘\321’ in program ./src/platform.h:89:1: error: stray ‘\323’ in program ./src/platform.h:89:1: error: stray ‘\264’ in program ./src/platform.h:89:1: error: stray ‘\240’ in program ./src/platform.h:89:1: error: stray ‘\224’ in program ./src/platform.h:89:1: error: stray ‘\366’ in program ./src/platform.h:89:1: error: stray ‘\30’ in program ./src/platform.h:89:1: error: stray ‘\345’ in program ./src/platform.h:89:1: error: stray ‘\305’ in program ./src/platform.h:89:1: error: stray ‘\263’ in program ./src/platform.h:89:1: error: stray ‘\251’ in program ./src/platform.h:89:1: error: stray ‘\212’ in program ./src/platform.h:89:1: error: stray ‘\347’ in program ./src/platform.h:89:1: error: stray ‘\22’ in program ./src/platform.h:89:1: error: stray ‘\23’ in program ./src/platform.h:89:1: error: stray ‘\32’ in program ./src/platform.h:89:235: error: expected identifier or ‘(’ before ‘)’ token ./src/platform.h:89:235: error: stray ‘\221’ in program ./src/platform.h:89:240: warning: missing terminating " character ./src/platform.h:89:235: error: missing terminating " character ./src/platform.h:90:1: error: stray ‘\264’ in program ./src/platform.h:90:1: error: stray ‘\334’ in program ./src/platform.h:90:1: error: stray ‘\334’ in program ./src/platform.h:90:1: error: stray ‘\322’ in program ./src/platform.h:90:1: error: stray ‘\362’ in program ./src/platform.h:90:1: error: stray ‘\271’ in program ./src/platform.h:90:1: error: stray ‘\277’ in program ./src/platform.h:90:1: error: stray ‘\335’ in program ./src/platform.h:90:1: error: stray ‘\326’ in program ./src/platform.h:90:1: error: stray ‘\262’ in program ./src/platform.h:90:1: error: stray ‘\374’ in program ./src/platform.h:90:1: error: stray ‘\355’ in program ./src/platform.h:90:1: error: stray ‘\266’ in program ./src/platform.h:90:1: error: stray ‘\227’ in program ./src/platform.h:90:1: error: stray ‘\265’ in program ./src/platform.h:90:1: error: stray ‘\351’ in program ./src/platform.h:90:1: error: stray ‘\267’ in program ./src/platform.h:90:1: error: stray ‘\263’ in program ./src/platform.h:90:1: error: stray ‘\254’ in program ./src/platform.h:90:1: error: stray ‘\335’ in program ./src/platform.h:90:1: error: stray ‘\253’ in program ./src/platform.h:90:1: error: stray ‘\314’ in program ./src/platform.h:90:1: error: stray ‘\23’ in program ./src/platform.h:90:1: error: stray ‘\255’ in program ./src/platform.h:90:1: error: stray ‘\303’ in program ./src/platform.h:90:1: error: stray ‘\301’ in program ./src/platform.h:90:1: error: stray ‘\360’ in program ./src/platform.h:90:1: error: stray ‘\231’ in program ./src/platform.h:90:1: error: stray ‘\316’ in program ./src/platform.h:90:1: error: stray ‘\7’ in program ./src/platform.h:90:1: error: stray ‘\256’ in program ./src/platform.h:90:1: error: stray ‘\321’ in program ./src/platform.h:90:1: error: stray ‘\256’ in program ./src/platform.h:90:1: error: stray ‘\243’ in program ./src/platform.h:90:1: error: stray ‘\240’ in program ./src/platform.h:90:1: error: stray ‘\311’ in program ./src/platform.h:90:1: error: stray ‘\211’ in program ./src/platform.h:90:1: error: stray ‘\220’ in program ./src/platform.h:90:52: warning: missing terminating " character ./src/platform.h:90:1: error: missing terminating " character ./src/platform.h:91:1: error: stray ‘\305’ in program ./src/platform.h:91:1: error: stray ‘\260’ in program ./src/platform.h:91:1: error: stray ‘\220’ in program ./src/platform.h:91:1: error: stray ‘\262’ in program ./src/platform.h:91:1: error: stray ‘\262’ in program ./src/platform.h:91:1: error: stray ‘\274’ in program ./src/platform.h:91:10: warning: null character(s) ignored ./src/platform.h:91:1: error: stray ‘\266’ in program ./src/platform.h:91:1: error: stray ‘\367’ in program ./src/platform.h:91:1: error: stray ‘\327’ in program ./src/platform.h:91:1: error: stray ‘\217’ in program ./src/platform.h:91:1: error: stray ‘\313’ in program ./src/platform.h:91:1: error: stray ‘\200’ in program ./src/platform.h:91:19: warning: null character(s) ignored ./src/platform.h:91:1: error: stray ‘\264’ in program ./src/platform.h:91:1: error: stray ‘\207’ in program ./src/platform.h:91:1: error: stray ‘\313’ in program ./src/platform.h:91:1: error: stray ‘\252’ in program ./src/platform.h:91:1: error: stray ‘\321’ in program ./src/platform.h:91:1: error: stray ‘\201’ in program ./src/platform.h:91:29: error: invalid suffix "w" on integer constant ./src/platform.h:91:1: error: stray ‘\377’ in program ./src/platform.h:91:1: error: stray ‘\26’ in program ./src/platform.h:91:1: error: stray ‘\373’ in program ./src/platform.h:91:1: error: stray ‘\321’ in program ./src/platform.h:91:1: error: stray ‘\10’ in program ./src/platform.h:91:1: error: stray ‘\213’ in program ./src/platform.h:91:1: error: stray ‘\201’ in program ./src/platform.h:91:1: error: stray ‘\210’ in program ./src/platform.h:91:1: error: stray ‘\340’ in program ./src/platform.h:91:1: error: stray ‘\236’ in program ./src/platform.h:91:43: error: stray ‘@’ in program ./src/platform.h:91:1: error: stray ‘\254’ in program ./src/platform.h:91:1: error: stray ‘\241’ in program ./src/platform.h:91:1: error: stray ‘\3’ in program ./src/platform.h:91:1: error: stray ‘\214’ in program ./src/platform.h:91:1: error: stray ‘\315’ in program ./src/platform.h:91:1: error: stray ‘\342’ in program ./src/platform.h:91:1: error: stray ‘\340’ in program ./src/platform.h:91:1: error: stray ‘\4’ in program ./src/platform.h:91:1: error: stray ‘\220’ in program ./src/platform.h:91:1: error: stray ‘\330’ in program ./src/platform.h:91:1: error: stray ‘\260’ in program ./src/platform.h:91:1: error: stray ‘\356’ in program ./src/platform.h:91:1: error: stray ‘\343’ in program ./src/platform.h:91:1: error: stray ‘\366’ in program ./src/platform.h:91:1: error: stray ‘\26’ in program ./src/platform.h:91:1: error: stray ‘\6’ in program ./src/platform.h:91:1: error: stray ‘\21’ in program ./src/platform.h:91:1: error: stray ‘\363’ in program ./src/platform.h:91:1: error: stray ‘\375’ in program ./src/platform.h:91:1: error: stray ‘\234’ in program ./src/platform.h:91:1: error: stray ‘\241’ in program ./src/platform.h:91:1: error: stray ‘\246’ in program ./src/platform.h:91:1: error: stray ‘\367’ in program ./src/platform.h:91:1: error: stray ‘\361’ in program ./src/platform.h:91:1: error: stray ‘\335’ in program ./src/platform.h:91:1: error: stray ‘\330’ in program ./src/platform.h:91:1: error: stray ‘\212’ in program ./src/platform.h:91:1: error: stray ‘\177’ in program ./src/platform.h:91:1: error: stray ‘\330’ in program ./src/platform.h:91:1: error: stray ‘\367’ in program ./src/platform.h:91:1: error: stray ‘\37’ in program ./src/platform.h:91:1: error: stray ‘\233’ in program ./src/platform.h:91:1: error: stray ‘\341’ in program ./src/platform.h:91:1: error: stray ‘\243’ in program ./src/platform.h:91:1: error: stray ‘\303’ in program ./src/platform.h:91:1: error: stray ‘\275’ in program ./src/platform.h:91:1: error: stray ‘\3’ in program ./src/platform.h:91:91: error: stray ‘@’ in program ./src/platform.h:91:1: error: stray ‘\201’ in program ./src/platform.h:91:1: error: stray ‘\262’ in program ./src/platform.h:91:1: error: stray ‘\327’ in program ./src/platform.h:91:1: error: stray ‘\1’ in program ./src/platform.h:91:1: error: stray ‘\263’ in program ./src/platform.h:91:1: error: stray ‘\335’ in program ./src/platform.h:91:1: error: stray ‘\5’ in program ./src/platform.h:91:1: error: stray ‘\227’ in program ./src/platform.h:91:1: error: stray ‘\2’ in program ./src/platform.h:91:103: warning: missing terminating ' character ./src/platform.h:91:1: error: missing terminating ' character ./src/platform.h:92:1: error: stray ‘\244’ in program ./src/platform.h:92:1: error: stray ‘\6’ in program ./src/platform.h:92:1: error: stray ‘\223’ in program ./src/platform.h:92:1: error: stray ‘`’ in program ./src/platform.h:92:1: error: stray ‘\221’ in program ./src/platform.h:93:1: error: stray ‘\22’ in program ./src/platform.h:93:1: error: stray ‘\370’ in program ./src/platform.h:93:1: error: stray ‘\324’ in program ./src/platform.h:93:1: error: stray ‘\311’ in program ./src/platform.h:93:1: error: stray ‘\270’ in program ./src/platform.h:93:1: error: stray ‘\221’ in program ./src/platform.h:93:1: error: stray ‘\24’ in program ./src/platform.h:93:1: error: stray ‘\376’ in program ./src/platform.h:93:1: error: stray ‘\211’ in program ./src/platform.h:93:15: error: invalid suffix "de" on integer constant ./src/platform.h:93:1: error: stray ‘\’ in program ./src/platform.h:93:1: error: stray ‘\221’ in program ./src/platform.h:93:1: error: stray ‘\331’ in program ./src/platform.h:93:1: error: stray ‘\203’ in program ./src/platform.h:93:1: error: stray ‘\230’ in program ./src/platform.h:93:1: error: stray ‘\30’ in program ./src/platform.h:93:1: error: stray ‘\23’ in program ./src/platform.h:93:1: error: stray ‘\333’ in program ./src/platform.h:93:1: error: stray ‘\251’ in program ./src/platform.h:93:1: error: stray ‘\26’ in program ./src/platform.h:93:1: error: stray ‘\225’ in program ./src/platform.h:93:1: error: stray ‘\300’ in program ./src/platform.h:93:1: error: stray ‘\251’ in program ./src/platform.h:93:1: error: stray ‘\333’ in program ./src/platform.h:93:1: error: stray ‘\262’ in program ./src/platform.h:93:1: error: stray ‘\1’ in program ./src/platform.h:93:1: error: stray ‘\237’ in program ./src/platform.h:93:1: error: stray ‘\204’ in program ./src/platform.h:93:1: error: stray ‘\255’ in program ./src/platform.h:93:1: error: stray ‘\214’ in program ./src/platform.h:93:1: error: stray ‘\27’ in program ./src/platform.h:93:1: error: stray ‘\247’ in program ./src/platform.h:93:1: error: stray ‘\343’ in program ./src/platform.h:93:1: error: stray ‘\177’ in program ./src/platform.h:93:1: error: stray ‘\210’ in program ./src/platform.h:93:1: error: stray ‘\346’ in program ./src/platform.h:93:1: error: stray ‘\362’ in program ./src/platform.h:93:1: error: stray ‘\6’ in program ./src/platform.h:93:1: error: stray ‘\254’ in program ./src/platform.h:93:1: error: stray ‘\233’ in program ./src/platform.h:93:1: error: stray ‘\204’ in program ./src/platform.h:93:1: error: stray ‘\243’ in program ./src/platform.h:93:1: error: stray ‘\210’ in program ./src/platform.h:93:1: error: stray ‘\352’ in program ./src/platform.h:93:1: error: stray ‘\346’ in program ./src/platform.h:93:1: error: stray ‘\223’ in program ./src/platform.h:93:1: error: stray ‘\330’ in program ./src/platform.h:93:1: error: stray ‘\20’ in program ./src/platform.h:93:1: error: stray ‘\205’ in program ./src/platform.h:93:1: error: stray ‘\367’ in program ./src/platform.h:93:1: error: stray ‘\271’ in program ./src/platform.h:93:1: error: stray ‘\305’ in program ./src/platform.h:93:1: error: stray ‘\207’ in program ./src/platform.h:93:1: error: stray ‘\35’ in program ./src/platform.h:93:1: error: stray ‘\6’ in program ./src/platform.h:93:100: error: stray ‘#’ in program ./src/platform.h:93:1: error: stray ‘\361’ in program ./src/platform.h:93:1: error: stray ‘\346’ in program ./src/platform.h:93:1: error: stray ‘\236’ in program ./src/platform.h:93:1: error: stray ‘\177’ in program ./src/platform.h:93:1: error: stray ‘\370’ in program ./src/platform.h:93:1: error: stray ‘\230’ in program ./src/platform.h:94:1: error: stray ‘\303’ in program ./src/platform.h:94:1: error: stray ‘\376’ in program ./src/platform.h:94:1: error: stray ‘\264’ in program ./src/platform.h:94:1: error: stray ‘\26’ in program ./src/platform.h:94:1: error: stray ‘\366’ in program ./src/platform.h:94:1: error: stray ‘\213’ in program ./src/platform.h:94:1: error: stray ‘\205’ in program ./src/platform.h:94:1: error: stray ‘\366’ in program ./src/platform.h:94:1: error: stray ‘\354’ in program ./src/platform.h:94:1: error: stray ‘\352’ in program ./src/platform.h:94:1: error: stray ‘\347’ in program ./src/platform.h:94:1: error: stray ‘\260’ in program ./src/platform.h:94:1: error: stray ‘\205’ in program ./src/platform.h:94:1: error: stray ‘\6’ in program ./src/platform.h:94:1: error: stray ‘\347’ in program ./src/platform.h:94:1: error: stray ‘\244’ in program ./src/platform.h:94:1: error: stray ‘\317’ in program ./src/platform.h:94:22: error: stray ‘#’ in program ./src/platform.h:94:1: error: stray ‘\331’ in program ./src/platform.h:94:1: error: stray ‘\276’ in program ./src/platform.h:94:1: error: stray ‘\322’ in program ./src/platform.h:94:1: error: stray ‘\264’ in program ./src/platform.h:94:1: error: stray ‘\24’ in program ./src/platform.h:94:1: error: stray ‘\7’ in program ./src/platform.h:94:1: error: stray ‘\1’ in program ./src/platform.h:94:1: error: stray ‘\252’ in program ./src/platform.h:94:1: error: stray ‘\371’ in program ./src/platform.h:95:1: error: stray ‘\200’ in program ./src/platform.h:95:1: error: stray ‘\335’ in program ./src/platform.h:95:1: error: stray ‘\303’ in program ./src/platform.h:95:6: error: stray ‘@’ in program ./src/platform.h:95:1: error: stray ‘\360’ in program ./src/platform.h:95:1: error: stray ‘\347’ in program ./src/platform.h:95:1: error: stray ‘\25’ in program ./src/platform.h:95:1: error: stray ‘\261’ in program ./src/platform.h:95:1: error: stray ‘\265’ in program ./src/platform.h:95:1: error: stray ‘\261’ in program ./src/platform.h:95:1: error: stray ‘\271’ in program ./src/platform.h:95:1: error: stray ‘\340’ in program ./src/platform.h:95:1: error: stray ‘\217’ in program ./src/platform.h:95:1: error: stray ‘\235’ in program ./src/platform.h:95:1: error: stray ‘\212’ in program ./src/platform.h:95:1: error: stray ‘\26’ in program ./src/platform.h:95:1: error: stray ‘\272’ in program ./src/platform.h:95:1: error: stray ‘\353’ in program ./src/platform.h:95:1: error: stray ‘\260’ in program ./src/platform.h:95:1: error: stray ‘\203’ in program ./src/platform.h:96:1: error: stray ‘\352’ in program ./src/platform.h:96:1: error: stray ‘\303’ in program ./src/platform.h:96:1: error: stray ‘\373’ in program ./src/platform.h:96:1: error: stray ‘\376’ in program ./src/platform.h:96:1: error: stray ‘\360’ in program ./src/platform.h:96:1: error: stray ‘\347’ in program ./src/platform.h:96:1: error: stray ‘\32’ in program ./src/platform.h:96:1: error: stray ‘\324’ in program ./src/platform.h:96:1: error: stray ‘\340’ in program ./src/platform.h:96:1: error: stray ‘`’ in program ./src/platform.h:96:1: error: stray ‘\243’ in program ./src/platform.h:96:1: error: stray ‘\262’ in program ./src/platform.h:96:1: error: stray ‘\347’ in program ./src/platform.h:96:1: error: stray ‘\352’ in program ./src/platform.h:96:1: error: stray ‘\217’ in program ./src/platform.h:96:1: error: stray ‘\21’ in program ./src/platform.h:97:1: error: stray ‘\305’ in program ./src/platform.h:97:1: error: stray ‘\255’ in program ./src/platform.h:97:1: error: stray ‘\312’ in program ./src/platform.h:97:9: error: stray ‘#’ in program ./src/platform.h:97:1: error: stray ‘\372’ in program ./src/platform.h:97:1: error: stray ‘\375’ in program ./src/platform.h:97:1: error: stray ‘\202’ in program ./src/platform.h:97:1: error: stray ‘\24’ in program ./src/platform.h:97:1: error: stray ‘\323’ in program ./src/platform.h:97:1: error: stray ‘\260’ in program ./src/platform.h:97:19: warning: null character(s) ignored ./src/platform.h:97:1: error: stray ‘\232’ in program ./src/platform.h:97:1: error: stray ‘\35’ in program ./src/platform.h:97:1: error: stray ‘\274’ in program ./src/platform.h:97:1: error: stray ‘\352’ in program ./src/platform.h:97:1: error: stray ‘\204’ in program ./src/platform.h:97:1: error: stray ‘\364’ in program ./src/platform.h:97:1: error: stray ‘\261’ in program ./src/platform.h:97:1: error: stray ‘\346’ in program ./src/platform.h:97:1: error: stray ‘\320’ in program ./src/platform.h:97:1: error: stray ‘\277’ in program ./src/platform.h:97:37: warning: missing terminating " character ./src/platform.h:97:1: error: missing terminating " character ./src/platform.h:98:1: error: stray ‘\353’ in program ./src/platform.h:98:1: error: stray ‘\320’ in program ./src/platform.h:98:3: error: invalid suffix "F" on integer constant ./src/platform.h:98:1: error: stray ‘\254’ in program ./src/platform.h:98:1: error: stray ‘\341’ in program ./src/platform.h:98:1: error: stray ‘\337’ in program ./src/platform.h:98:1: error: stray ‘\201’ in program ./src/platform.h:98:1: error: stray ‘\250’ in program ./src/platform.h:98:1: error: stray ‘\16’ in program ./src/platform.h:98:1: error: stray ‘\206’ in program ./src/platform.h:98:1: error: stray ‘\360’ in program ./src/platform.h:98:1: error: stray ‘\351’ in program ./src/platform.h:98:1: error: stray ‘\252’ in program ./src/platform.h:98:1: error: stray ‘\203’ in program ./src/platform.h:98:1: error: stray ‘\356’ in program ./src/platform.h:98:1: error: stray ‘\200’ in program ./src/platform.h:98:1: error: stray ‘\377’ in program ./src/platform.h:98:1: error: stray ‘\216’ in program ./src/platform.h:98:1: error: stray ‘\233’ in program ./src/platform.h:98:1: error: stray ‘\177’ in program ./src/platform.h:98:1: error: stray ‘\201’ in program ./src/platform.h:98:1: error: stray ‘\3’ in program ./src/platform.h:98:1: error: stray ‘\275’ in program ./src/platform.h:98:1: error: stray ‘\236’ in program ./src/platform.h:98:1: error: stray ‘\4’ in program ./src/platform.h:98:1: error: stray ‘\303’ in program ./src/platform.h:98:1: error: stray ‘\360’ in program ./src/platform.h:98:1: error: stray ‘\232’ in program ./src/platform.h:98:1: error: stray ‘\374’ in program ./src/platform.h:98:1: error: stray ‘\2’ in program ./src/platform.h:98:39: warning: character constant too long for its type ./src/platform.h:98:1: error: stray ‘\250’ in program ./src/platform.h:98:1: error: stray ‘\3’ in program ./src/platform.h:98:1: error: stray ‘\330’ in program ./src/platform.h:98:1: error: stray ‘\225’ in program ./src/platform.h:98:1: error: stray ‘\36’ in program ./src/platform.h:98:1: error: stray ‘\257’ in program ./src/platform.h:98:1: error: stray ‘\31’ in program ./src/platform.h:98:1: error: stray ‘\344’ in program ./src/platform.h:98:1: error: stray ‘\20’ in program ./src/platform.h:98:1: error: stray ‘\345’ in program ./src/platform.h:98:1: error: stray ‘\10’ in program ./src/platform.h:98:1: error: stray ‘\216’ in program ./src/platform.h:98:1: error: stray ‘\355’ in program ./src/platform.h:98:1: error: stray ‘\323’ in program ./src/platform.h:98:1: error: stray ‘\304’ in program ./src/platform.h:98:128: warning: missing terminating ' character ./src/platform.h:98:1: error: missing terminating ' character ./src/platform.h:99:1: warning: missing terminating ' character ./src/platform.h:99:1: error: missing terminating ' character ./src/platform.h:100:1: error: stray ‘\271’ in program ./src/platform.h:100:1: error: stray ‘\351’ in program ./src/platform.h:100:1: error: stray ‘\376’ in program ./src/platform.h:100:1: error: stray ‘\277’ in program ./src/platform.h:100:1: error: stray ‘\31’ in program ./src/platform.h:100:1: error: stray ‘\335’ in program ./src/platform.h:100:1: error: stray ‘\177’ in program ./src/platform.h:100:1: error: stray ‘\275’ in program ./src/platform.h:100:1: error: stray ‘\202’ in program ./src/platform.h:100:1: error: stray ‘\32’ in program ./src/platform.h:100:1: error: stray ‘\26’ in program ./src/platform.h:100:1: error: stray ‘\331’ in program ./src/platform.h:100:1: error: stray ‘\276’ in program ./src/platform.h:100:1: error: stray ‘\226’ in program ./src/platform.h:100:1: error: stray ‘\346’ in program ./src/platform.h:100:1: error: stray ‘\342’ in program ./src/platform.h:100:1: error: stray ‘\355’ in program ./src/platform.h:100:1: error: stray ‘\247’ in program ./src/platform.h:100:1: error: stray ‘\273’ in program ./src/platform.h:100:1: error: stray ‘\304’ in program ./src/platform.h:100:1: error: stray ‘\243’ in program ./src/platform.h:100:1: error: stray ‘\345’ in program ./src/platform.h:100:1: error: stray ‘\37’ in program ./src/platform.h:100:1: error: stray ‘\213’ in program ./src/platform.h:100:1: error: stray ‘\227’ in program ./src/platform.h:100:1: error: stray ‘\357’ in program ./src/platform.h:100:1: error: stray ‘\21’ in program ./src/platform.h:100:1: error: stray ‘\210’ in program ./src/platform.h:100:1: error: stray ‘\30’ in program ./src/platform.h:100:1: error: stray ‘\253’ in program ./src/platform.h:100:1: error: stray ‘\345’ in program ./src/platform.h:100:1: error: stray ‘\350’ in program ./src/platform.h:100:1: error: stray ‘\246’ in program ./src/platform.h:100:1: error: stray ‘\260’ in program ./src/platform.h:100:1: error: stray ‘\337’ in program ./src/platform.h:100:1: error: stray ‘\350’ in program ./src/platform.h:100:1: error: stray ‘\373’ in program ./src/platform.h:100:1: error: stray ‘\374’ in program ./src/platform.h:100:1: error: stray ‘\325’ in program ./src/platform.h:100:1: error: stray ‘\355’ in program ./src/platform.h:100:1: error: stray ‘\235’ in program ./src/platform.h:100:1: error: stray ‘\272’ in program ./src/platform.h:100:1: error: stray ‘\353’ in program ./src/platform.h:100:1: error: stray ‘\343’ in program ./src/platform.h:100:1: error: stray ‘\270’ in program ./src/platform.h:100:1: error: stray ‘\334’ in program ./src/platform.h:100:1: error: stray ‘\251’ in program ./src/platform.h:100:1: error: stray ‘\233’ in program ./src/platform.h:100:79: warning: null character(s) ignored ./src/platform.h:100:1: error: stray ‘\201’ in program ./src/platform.h:100:1: error: stray ‘\265’ in program ./src/platform.h:100:1: error: stray ‘\377’ in program ./src/platform.h:100:1: error: stray ‘\22’ in program ./src/platform.h:100:1: error: stray ‘\316’ in program ./src/platform.h:100:1: error: stray ‘\343’ in program ./src/platform.h:100:1: error: stray ‘\305’ in program ./src/platform.h:100:1: error: stray ‘\353’ in program ./src/platform.h:100:1: error: stray ‘\256’ in program ./src/platform.h:100:1: error: stray ‘\334’ in program ./src/platform.h:100:1: error: stray ‘\216’ in program ./src/platform.h:100:1: error: stray ‘\277’ in program ./src/platform.h:100:1: error: stray ‘\313’ in program ./src/platform.h:100:1: error: stray ‘\302’ in program ./src/platform.h:100:1: error: stray ‘\204’ in program ./src/platform.h:100:1: error: stray ‘\372’ in program ./src/platform.h:100:1: error: stray ‘\241’ in program ./src/platform.h:100:1: error: stray ‘\247’ in program ./src/platform.h:100:1: error: stray ‘\274’ in program ./src/platform.h:100:1: error: stray ‘\206’ in program ./src/platform.h:100:1: error: stray ‘\267’ in program ./src/platform.h:100:1: error: stray ‘\300’ in program ./src/platform.h:100:1: error: stray ‘\35’ in program ./src/platform.h:100:1: error: stray ‘\357’ in program ./src/platform.h:100:1: error: stray ‘\301’ in program ./src/platform.h:100:1: error: stray ‘\262’ in program ./src/platform.h:100:1: error: stray ‘`’ in program ./src/platform.h:100:1: error: stray ‘\363’ in program ./src/platform.h:100:1: error: stray ‘\343’ in program ./src/platform.h:100:1: error: stray ‘\353’ in program ./src/platform.h:100:1: error: stray ‘\226’ in program ./src/platform.h:100:1: error: stray ‘\372’ in program ./src/platform.h:100:1: error: stray ‘\267’ in program ./src/platform.h:100:1: error: stray ‘\341’ in program ./src/platform.h:100:1: error: stray ‘`’ in program ./src/platform.h:100:1: error: stray ‘\214’ in program ./src/platform.h:100:1: error: stray ‘\272’ in program ./src/platform.h:100:1: error: stray ‘\320’ in program ./src/platform.h:100:1: error: stray ‘\230’ in program ./src/platform.h:100:1: error: stray ‘\263’ in program ./src/platform.h:100:1: error: stray ‘\370’ in program ./src/platform.h:100:1: error: stray ‘\377’ in program ./src/platform.h:100:1: error: stray ‘\27’ in program ./src/platform.h:100:144: error: stray ‘@’ in program ./src/platform.h:100:1: error: stray ‘\266’ in program ./src/platform.h:100:146: warning: null character(s) ignored Makefile:2984: recipe for target 'NORMAL_O-THREADS_O.stamp' failed make[1]: *** [NORMAL_O-THREADS_O.stamp] Error 1 make[1]: Leaving directory '/home/ubuntu/Solaris2/mlucas-14.1' Makefile:2084: recipe for target 'all' failed make: *** [all] Error 2 [/CODE] |
And log for single compilation:
[CODE]../platform.h:89:1: error: stray ‘\34’ in program ../platform.h:89:1: error: stray ‘\203’ in program ../platform.h:89:1: error: stray ‘\265’ in program ../platform.h:89:1: error: stray ‘\254’ in program ../platform.h:89:1: error: stray ‘\221’ in program ../platform.h:89:102: error: invalid suffix "W" on integer constant ../platform.h:89:1: error: stray ‘\367’ in program ../platform.h:89:1: error: stray ‘\203’ in program ../platform.h:89:1: error: stray ‘\313’ in program ../platform.h:89:1: error: stray ‘\254’ in program ../platform.h:89:1: error: stray ‘\336’ in program ../platform.h:89:1: error: stray ‘\306’ in program ../platform.h:89:1: error: stray ‘\327’ in program ../platform.h:89:1: error: stray ‘\263’ in program ../platform.h:89:115: error: stray ‘@’ in program ../platform.h:89:1: error: stray ‘\340’ in program ../platform.h:89:1: error: stray ‘\270’ in program ../platform.h:89:1: error: stray ‘\253’ in program ../platform.h:89:1: error: stray ‘\305’ in program ../platform.h:89:1: error: stray ‘\201’ in program ../platform.h:89:1: error: stray ‘\253’ in program ../platform.h:89:1: error: stray ‘\346’ in program ../platform.h:89:1: error: stray ‘\2’ in program ../platform.h:89:1: error: stray ‘\31’ in program ../platform.h:89:133: error: stray ‘@’ in program ../platform.h:89:1: error: stray ‘\5’ in program ../platform.h:89:1: error: stray ‘\20’ in program ../platform.h:89:1: error: stray ‘\260’ in program ../platform.h:89:1: error: stray ‘\375’ in program ../platform.h:89:1: error: stray ‘\250’ in program ../platform.h:89:1: error: stray ‘\225’ in program ../platform.h:89:1: error: stray ‘\6’ in program ../platform.h:89:1: error: stray ‘\243’ in program ../platform.h:89:1: error: stray ‘\26’ in program ../platform.h:89:1: error: stray ‘\20’ in program ../platform.h:89:1: error: stray ‘\262’ in program ../platform.h:89:1: error: stray ‘\22’ in program ../platform.h:89:1: error: stray ‘\20’ in program ../platform.h:89:1: error: stray ‘\16’ in program ../platform.h:89:1: error: stray ‘\30’ in program ../platform.h:89:1: error: stray ‘\222’ in program ../platform.h:89:1: error: stray ‘\252’ in program ../platform.h:89:1: error: stray ‘\231’ in program ../platform.h:89:1: error: stray ‘\347’ in program ../platform.h:89:1: error: stray ‘\24’ in program ../platform.h:89:1: error: stray ‘\355’ in program ../platform.h:89:1: error: stray ‘\245’ in program ../platform.h:89:1: error: stray ‘\31’ in program ../platform.h:89:1: error: stray ‘\236’ in program ../platform.h:89:1: error: stray ‘\203’ in program ../platform.h:89:1: error: stray ‘\231’ in program ../platform.h:89:1: error: stray ‘\324’ in program ../platform.h:89:1: error: stray ‘\345’ in program ../platform.h:89:1: error: stray ‘\236’ in program ../platform.h:89:1: error: stray ‘\7’ in program ../platform.h:89:1: error: stray ‘\361’ in program ../platform.h:89:1: error: stray ‘\224’ in program ../platform.h:89:1: error: stray ‘\24’ in program ../platform.h:89:1: error: stray ‘\7’ in program ../platform.h:89:1: error: stray ‘\247’ in program ../platform.h:89:1: error: stray ‘\356’ in program ../platform.h:89:1: error: stray ‘\355’ in program ../platform.h:89:1: error: stray ‘\331’ in program ../platform.h:89:1: error: stray ‘\313’ in program ../platform.h:89:1: error: stray ‘\325’ in program ../platform.h:89:1: error: stray ‘\253’ in program ../platform.h:89:1: error: stray ‘\10’ in program ../platform.h:89:1: error: stray ‘\246’ in program ../platform.h:89:1: error: stray ‘\233’ in program ../platform.h:89:1: error: stray ‘\342’ in program ../platform.h:89:1: error: stray ‘\366’ in program ../platform.h:89:1: error: stray ‘\242’ in program ../platform.h:89:1: error: stray ‘\321’ in program ../platform.h:89:1: error: stray ‘\323’ in program ../platform.h:89:1: error: stray ‘\264’ in program ../platform.h:89:1: error: stray ‘\240’ in program ../platform.h:89:1: error: stray ‘\224’ in program ../platform.h:89:1: error: stray ‘\366’ in program ../platform.h:89:1: error: stray ‘\30’ in program ../platform.h:89:1: error: stray ‘\345’ in program ../platform.h:89:1: error: stray ‘\305’ in program ../platform.h:89:1: error: stray ‘\263’ in program ../platform.h:89:1: error: stray ‘\251’ in program ../platform.h:89:1: error: stray ‘\212’ in program ../platform.h:89:1: error: stray ‘\347’ in program ../platform.h:89:1: error: stray ‘\22’ in program ../platform.h:89:1: error: stray ‘\23’ in program ../platform.h:89:1: error: stray ‘\32’ in program ../platform.h:89:235: error: expected identifier or ‘(’ before ‘)’ token ../platform.h:89:235: error: stray ‘\221’ in program ../platform.h:89:240: warning: missing terminating " character ../platform.h:89:235: error: missing terminating " character ../platform.h:90:1: error: stray ‘\264’ in program ../platform.h:90:1: error: stray ‘\334’ in program ../platform.h:90:1: error: stray ‘\334’ in program ../platform.h:90:1: error: stray ‘\322’ in program ../platform.h:90:1: error: stray ‘\362’ in program ../platform.h:90:1: error: stray ‘\271’ in program ../platform.h:90:1: error: stray ‘\277’ in program ../platform.h:90:1: error: stray ‘\335’ in program ../platform.h:90:1: error: stray ‘\326’ in program ../platform.h:90:1: error: stray ‘\262’ in program ../platform.h:90:1: error: stray ‘\374’ in program ../platform.h:90:1: error: stray ‘\355’ in program ../platform.h:90:1: error: stray ‘\266’ in program ../platform.h:90:1: error: stray ‘\227’ in program ../platform.h:90:1: error: stray ‘\265’ in program ../platform.h:90:1: error: stray ‘\351’ in program ../platform.h:90:1: error: stray ‘\267’ in program ../platform.h:90:1: error: stray ‘\263’ in program ../platform.h:90:1: error: stray ‘\254’ in program ../platform.h:90:1: error: stray ‘\335’ in program ../platform.h:90:1: error: stray ‘\253’ in program ../platform.h:90:1: error: stray ‘\314’ in program ../platform.h:90:1: error: stray ‘\23’ in program ../platform.h:90:1: error: stray ‘\255’ in program ../platform.h:90:1: error: stray ‘\303’ in program ../platform.h:90:1: error: stray ‘\301’ in program ../platform.h:90:1: error: stray ‘\360’ in program ../platform.h:90:1: error: stray ‘\231’ in program ../platform.h:90:1: error: stray ‘\316’ in program ../platform.h:90:1: error: stray ‘\7’ in program ../platform.h:90:1: error: stray ‘\256’ in program ../platform.h:90:1: error: stray ‘\321’ in program ../platform.h:90:1: error: stray ‘\256’ in program ../platform.h:90:1: error: stray ‘\243’ in program ../platform.h:90:1: error: stray ‘\240’ in program ../platform.h:90:1: error: stray ‘\311’ in program ../platform.h:90:1: error: stray ‘\211’ in program ../platform.h:90:1: error: stray ‘\220’ in program ../platform.h:90:52: warning: missing terminating " character ../platform.h:90:1: error: missing terminating " character ../platform.h:91:1: error: stray ‘\305’ in program ../platform.h:91:1: error: stray ‘\260’ in program ../platform.h:91:1: error: stray ‘\220’ in program ../platform.h:91:1: error: stray ‘\262’ in program ../platform.h:91:1: error: stray ‘\262’ in program ../platform.h:91:1: error: stray ‘\274’ in program ../platform.h:91:10: warning: null character(s) ignored ../platform.h:91:1: error: stray ‘\266’ in program ../platform.h:91:1: error: stray ‘\367’ in program ../platform.h:91:1: error: stray ‘\327’ in program ../platform.h:91:1: error: stray ‘\217’ in program ../platform.h:91:1: error: stray ‘\313’ in program ../platform.h:91:1: error: stray ‘\200’ in program ../platform.h:91:19: warning: null character(s) ignored ../platform.h:91:1: error: stray ‘\264’ in program ../platform.h:91:1: error: stray ‘\207’ in program ../platform.h:91:1: error: stray ‘\313’ in program ../platform.h:91:1: error: stray ‘\252’ in program ../platform.h:91:1: error: stray ‘\321’ in program ../platform.h:91:1: error: stray ‘\201’ in program ../platform.h:91:29: error: invalid suffix "w" on integer constant ../platform.h:91:1: error: stray ‘\377’ in program ../platform.h:91:1: error: stray ‘\26’ in program ../platform.h:91:1: error: stray ‘\373’ in program ../platform.h:91:1: error: stray ‘\321’ in program ../platform.h:91:1: error: stray ‘\10’ in program ../platform.h:91:1: error: stray ‘\213’ in program ../platform.h:91:1: error: stray ‘\201’ in program ../platform.h:91:1: error: stray ‘\210’ in program ../platform.h:91:1: error: stray ‘\340’ in program ../platform.h:91:1: error: stray ‘\236’ in program ../platform.h:91:43: error: stray ‘@’ in program ../platform.h:91:1: error: stray ‘\254’ in program ../platform.h:91:1: error: stray ‘\241’ in program ../platform.h:91:1: error: stray ‘\3’ in program ../platform.h:91:1: error: stray ‘\214’ in program ../platform.h:91:1: error: stray ‘\315’ in program ../platform.h:91:1: error: stray ‘\342’ in program ../platform.h:91:1: error: stray ‘\340’ in program ../platform.h:91:1: error: stray ‘\4’ in program ../platform.h:91:1: error: stray ‘\220’ in program ../platform.h:91:1: error: stray ‘\330’ in program ../platform.h:91:1: error: stray ‘\260’ in program ../platform.h:91:1: error: stray ‘\356’ in program ../platform.h:91:1: error: stray ‘\343’ in program ../platform.h:91:1: error: stray ‘\366’ in program ../platform.h:91:1: error: stray ‘\26’ in program ../platform.h:91:1: error: stray ‘\6’ in program ../platform.h:91:1: error: stray ‘\21’ in program ../platform.h:91:1: error: stray ‘\363’ in program ../platform.h:91:1: error: stray ‘\375’ in program ../platform.h:91:1: error: stray ‘\234’ in program ../platform.h:91:1: error: stray ‘\241’ in program ../platform.h:91:1: error: stray ‘\246’ in program ../platform.h:91:1: error: stray ‘\367’ in program ../platform.h:91:1: error: stray ‘\361’ in program ../platform.h:91:1: error: stray ‘\335’ in program ../platform.h:91:1: error: stray ‘\330’ in program ../platform.h:91:1: error: stray ‘\212’ in program ../platform.h:91:1: error: stray ‘\177’ in program ../platform.h:91:1: error: stray ‘\330’ in program ../platform.h:91:1: error: stray ‘\367’ in program ../platform.h:91:1: error: stray ‘\37’ in program ../platform.h:91:1: error: stray ‘\233’ in program ../platform.h:91:1: error: stray ‘\341’ in program ../platform.h:91:1: error: stray ‘\243’ in program ../platform.h:91:1: error: stray ‘\303’ in program ../platform.h:91:1: error: stray ‘\275’ in program ../platform.h:91:1: error: stray ‘\3’ in program ../platform.h:91:91: error: stray ‘@’ in program ../platform.h:91:1: error: stray ‘\201’ in program ../platform.h:91:1: error: stray ‘\262’ in program ../platform.h:91:1: error: stray ‘\327’ in program ../platform.h:91:1: error: stray ‘\1’ in program ../platform.h:91:1: error: stray ‘\263’ in program ../platform.h:91:1: error: stray ‘\335’ in program ../platform.h:91:1: error: stray ‘\5’ in program ../platform.h:91:1: error: stray ‘\227’ in program ../platform.h:91:1: error: stray ‘\2’ in program ../platform.h:91:103: warning: missing terminating ' character ../platform.h:91:1: error: missing terminating ' character ../platform.h:92:1: error: stray ‘\244’ in program ../platform.h:92:1: error: stray ‘\6’ in program ../platform.h:92:1: error: stray ‘\223’ in program ../platform.h:92:1: error: stray ‘`’ in program ../platform.h:92:1: error: stray ‘\221’ in program ../platform.h:93:1: error: stray ‘\22’ in program ../platform.h:93:1: error: stray ‘\370’ in program ../platform.h:93:1: error: stray ‘\324’ in program ../platform.h:93:1: error: stray ‘\311’ in program ../platform.h:93:1: error: stray ‘\270’ in program ../platform.h:93:1: error: stray ‘\221’ in program ../platform.h:93:1: error: stray ‘\24’ in program ../platform.h:93:1: error: stray ‘\376’ in program ../platform.h:93:1: error: stray ‘\211’ in program ../platform.h:93:15: error: invalid suffix "de" on integer constant ../platform.h:93:1: error: stray ‘\’ in program ../platform.h:93:1: error: stray ‘\221’ in program ../platform.h:93:1: error: stray ‘\331’ in program ../platform.h:93:1: error: stray ‘\203’ in program ../platform.h:93:1: error: stray ‘\230’ in program ../platform.h:93:1: error: stray ‘\30’ in program ../platform.h:93:1: error: stray ‘\23’ in program ../platform.h:93:1: error: stray ‘\333’ in program ../platform.h:93:1: error: stray ‘\251’ in program ../platform.h:93:1: error: stray ‘\26’ in program ../platform.h:93:1: error: stray ‘\225’ in program ../platform.h:93:1: error: stray ‘\300’ in program ../platform.h:93:1: error: stray ‘\251’ in program ../platform.h:93:1: error: stray ‘\333’ in program ../platform.h:93:1: error: stray ‘\262’ in program ../platform.h:93:1: error: stray ‘\1’ in program ../platform.h:93:1: error: stray ‘\237’ in program ../platform.h:93:1: error: stray ‘\204’ in program ../platform.h:93:1: error: stray ‘\255’ in program ../platform.h:93:1: error: stray ‘\214’ in program ../platform.h:93:1: error: stray ‘\27’ in program ../platform.h:93:1: error: stray ‘\247’ in program ../platform.h:93:1: error: stray ‘\343’ in program ../platform.h:93:1: error: stray ‘\177’ in program ../platform.h:93:1: error: stray ‘\210’ in program ../platform.h:93:1: error: stray ‘\346’ in program ../platform.h:93:1: error: stray ‘\362’ in program ../platform.h:93:1: error: stray ‘\6’ in program ../platform.h:93:1: error: stray ‘\254’ in program ../platform.h:93:1: error: stray ‘\233’ in program ../platform.h:93:1: error: stray ‘\204’ in program ../platform.h:93:1: error: stray ‘\243’ in program ../platform.h:93:1: error: stray ‘\210’ in program ../platform.h:93:1: error: stray ‘\352’ in program ../platform.h:93:1: error: stray ‘\346’ in program ../platform.h:93:1: error: stray ‘\223’ in program ../platform.h:93:1: error: stray ‘\330’ in program ../platform.h:93:1: error: stray ‘\20’ in program ../platform.h:93:1: error: stray ‘\205’ in program ../platform.h:93:1: error: stray ‘\367’ in program ../platform.h:93:1: error: stray ‘\271’ in program ../platform.h:93:1: error: stray ‘\305’ in program ../platform.h:93:1: error: stray ‘\207’ in program ../platform.h:93:1: error: stray ‘\35’ in program ../platform.h:93:1: error: stray ‘\6’ in program ../platform.h:93:100: error: stray ‘#’ in program ../platform.h:93:1: error: stray ‘\361’ in program ../platform.h:93:1: error: stray ‘\346’ in program ../platform.h:93:1: error: stray ‘\236’ in program ../platform.h:93:1: error: stray ‘\177’ in program ../platform.h:93:1: error: stray ‘\370’ in program ../platform.h:93:1: error: stray ‘\230’ in program ../platform.h:94:1: error: stray ‘\303’ in program ../platform.h:94:1: error: stray ‘\376’ in program ../platform.h:94:1: error: stray ‘\264’ in program ../platform.h:94:1: error: stray ‘\26’ in program ../platform.h:94:1: error: stray ‘\366’ in program ../platform.h:94:1: error: stray ‘\213’ in program ../platform.h:94:1: error: stray ‘\205’ in program ../platform.h:94:1: error: stray ‘\366’ in program ../platform.h:94:1: error: stray ‘\354’ in program ../platform.h:94:1: error: stray ‘\352’ in program ../platform.h:94:1: error: stray ‘\347’ in program ../platform.h:94:1: error: stray ‘\260’ in program ../platform.h:94:1: error: stray ‘\205’ in program ../platform.h:94:1: error: stray ‘\6’ in program ../platform.h:94:1: error: stray ‘\347’ in program ../platform.h:94:1: error: stray ‘\244’ in program ../platform.h:94:1: error: stray ‘\317’ in program ../platform.h:94:22: error: stray ‘#’ in program ../platform.h:94:1: error: stray ‘\331’ in program ../platform.h:94:1: error: stray ‘\276’ in program ../platform.h:94:1: error: stray ‘\322’ in program ../platform.h:94:1: error: stray ‘\264’ in program ../platform.h:94:1: error: stray ‘\24’ in program ../platform.h:94:1: error: stray ‘\7’ in program ../platform.h:94:1: error: stray ‘\1’ in program ../platform.h:94:1: error: stray ‘\252’ in program ../platform.h:94:1: error: stray ‘\371’ in program ../platform.h:95:1: error: stray ‘\200’ in program ../platform.h:95:1: error: stray ‘\335’ in program ../platform.h:95:1: error: stray ‘\303’ in program ../platform.h:95:6: error: stray ‘@’ in program ../platform.h:95:1: error: stray ‘\360’ in program ../platform.h:95:1: error: stray ‘\347’ in program ../platform.h:95:1: error: stray ‘\25’ in program ../platform.h:95:1: error: stray ‘\261’ in program ../platform.h:95:1: error: stray ‘\265’ in program ../platform.h:95:1: error: stray ‘\261’ in program ../platform.h:95:1: error: stray ‘\271’ in program ../platform.h:95:1: error: stray ‘\340’ in program ../platform.h:95:1: error: stray ‘\217’ in program ../platform.h:95:1: error: stray ‘\235’ in program ../platform.h:95:1: error: stray ‘\212’ in program ../platform.h:95:1: error: stray ‘\26’ in program ../platform.h:95:1: error: stray ‘\272’ in program ../platform.h:95:1: error: stray ‘\353’ in program ../platform.h:95:1: error: stray ‘\260’ in program ../platform.h:95:1: error: stray ‘\203’ in program ../platform.h:96:1: error: stray ‘\352’ in program ../platform.h:96:1: error: stray ‘\303’ in program ../platform.h:96:1: error: stray ‘\373’ in program ../platform.h:96:1: error: stray ‘\376’ in program ../platform.h:96:1: error: stray ‘\360’ in program ../platform.h:96:1: error: stray ‘\347’ in program ../platform.h:96:1: error: stray ‘\32’ in program ../platform.h:96:1: error: stray ‘\324’ in program ../platform.h:96:1: error: stray ‘\340’ in program ../platform.h:96:1: error: stray ‘`’ in program ../platform.h:96:1: error: stray ‘\243’ in program ../platform.h:96:1: error: stray ‘\262’ in program ../platform.h:96:1: error: stray ‘\347’ in program ../platform.h:96:1: error: stray ‘\352’ in program ../platform.h:96:1: error: stray ‘\217’ in program ../platform.h:96:1: error: stray ‘\21’ in program ../platform.h:97:1: error: stray ‘\305’ in program ../platform.h:97:1: error: stray ‘\255’ in program ../platform.h:97:1: error: stray ‘\312’ in program ../platform.h:97:9: error: stray ‘#’ in program ../platform.h:97:1: error: stray ‘\372’ in program ../platform.h:97:1: error: stray ‘\375’ in program ../platform.h:97:1: error: stray ‘\202’ in program ../platform.h:97:1: error: stray ‘\24’ in program ../platform.h:97:1: error: stray ‘\323’ in program ../platform.h:97:1: error: stray ‘\260’ in program ../platform.h:97:19: warning: null character(s) ignored ../platform.h:97:1: error: stray ‘\232’ in program ../platform.h:97:1: error: stray ‘\35’ in program ../platform.h:97:1: error: stray ‘\274’ in program ../platform.h:97:1: error: stray ‘\352’ in program ../platform.h:97:1: error: stray ‘\204’ in program ../platform.h:97:1: error: stray ‘\364’ in program ../platform.h:97:1: error: stray ‘\261’ in program ../platform.h:97:1: error: stray ‘\346’ in program ../platform.h:97:1: error: stray ‘\320’ in program ../platform.h:97:1: error: stray ‘\277’ in program ../platform.h:97:37: warning: missing terminating " character ../platform.h:97:1: error: missing terminating " character ../platform.h:98:1: error: stray ‘\353’ in program ../platform.h:98:1: error: stray ‘\320’ in program ../platform.h:98:3: error: invalid suffix "F" on integer constant ../platform.h:98:1: error: stray ‘\254’ in program ../platform.h:98:1: error: stray ‘\341’ in program ../platform.h:98:1: error: stray ‘\337’ in program ../platform.h:98:1: error: stray ‘\201’ in program ../platform.h:98:1: error: stray ‘\250’ in program ../platform.h:98:1: error: stray ‘\16’ in program ../platform.h:98:1: error: stray ‘\206’ in program ../platform.h:98:1: error: stray ‘\360’ in program ../platform.h:98:1: error: stray ‘\351’ in program ../platform.h:98:1: error: stray ‘\252’ in program ../platform.h:98:1: error: stray ‘\203’ in program ../platform.h:98:1: error: stray ‘\356’ in program ../platform.h:98:1: error: stray ‘\200’ in program ../platform.h:98:1: error: stray ‘\377’ in program ../platform.h:98:1: error: stray ‘\216’ in program ../platform.h:98:1: error: stray ‘\233’ in program ../platform.h:98:1: error: stray ‘\177’ in program ../platform.h:98:1: error: stray ‘\201’ in program ../platform.h:98:1: error: stray ‘\3’ in program ../platform.h:98:1: error: stray ‘\275’ in program ../platform.h:98:1: error: stray ‘\236’ in program ../platform.h:98:1: error: stray ‘\4’ in program ../platform.h:98:1: error: stray ‘\303’ in program ../platform.h:98:1: error: stray ‘\360’ in program ../platform.h:98:1: error: stray ‘\232’ in program ../platform.h:98:1: error: stray ‘\374’ in program ../platform.h:98:1: error: stray ‘\2’ in program ../platform.h:98:39: warning: character constant too long for its type ../platform.h:98:1: error: stray ‘\250’ in program ../platform.h:98:1: error: stray ‘\3’ in program ../platform.h:98:1: error: stray ‘\330’ in program ../platform.h:98:1: error: stray ‘\225’ in program ../platform.h:98:1: error: stray ‘\36’ in program ../platform.h:98:1: error: stray ‘\257’ in program ../platform.h:98:1: error: stray ‘\31’ in program ../platform.h:98:1: error: stray ‘\344’ in program ../platform.h:98:1: error: stray ‘\20’ in program ../platform.h:98:1: error: stray ‘\345’ in program ../platform.h:98:1: error: stray ‘\10’ in program ../platform.h:98:1: error: stray ‘\216’ in program ../platform.h:98:1: error: stray ‘\355’ in program ../platform.h:98:1: error: stray ‘\323’ in program ../platform.h:98:1: error: stray ‘\304’ in program ../platform.h:98:128: warning: missing terminating ' character ../platform.h:98:1: error: missing terminating ' character ../platform.h:99:1: warning: missing terminating ' character ../platform.h:99:1: error: missing terminating ' character ../platform.h:100:1: error: stray ‘\271’ in program ../platform.h:100:1: error: stray ‘\351’ in program ../platform.h:100:1: error: stray ‘\376’ in program ../platform.h:100:1: error: stray ‘\277’ in program ../platform.h:100:1: error: stray ‘\31’ in program ../platform.h:100:1: error: stray ‘\335’ in program ../platform.h:100:1: error: stray ‘\177’ in program ../platform.h:100:1: error: stray ‘\275’ in program ../platform.h:100:1: error: stray ‘\202’ in program ../platform.h:100:1: error: stray ‘\32’ in program ../platform.h:100:1: error: stray ‘\26’ in program ../platform.h:100:1: error: stray ‘\331’ in program ../platform.h:100:1: error: stray ‘\276’ in program ../platform.h:100:1: error: stray ‘\226’ in program ../platform.h:100:1: error: stray ‘\346’ in program ../platform.h:100:1: error: stray ‘\342’ in program ../platform.h:100:1: error: stray ‘\355’ in program ../platform.h:100:1: error: stray ‘\247’ in program ../platform.h:100:1: error: stray ‘\273’ in program ../platform.h:100:1: error: stray ‘\304’ in program ../platform.h:100:1: error: stray ‘\243’ in program ../platform.h:100:1: error: stray ‘\345’ in program ../platform.h:100:1: error: stray ‘\37’ in program ../platform.h:100:1: error: stray ‘\213’ in program ../platform.h:100:1: error: stray ‘\227’ in program ../platform.h:100:1: error: stray ‘\357’ in program ../platform.h:100:1: error: stray ‘\21’ in program ../platform.h:100:1: error: stray ‘\210’ in program ../platform.h:100:1: error: stray ‘\30’ in program ../platform.h:100:1: error: stray ‘\253’ in program ../platform.h:100:1: error: stray ‘\345’ in program ../platform.h:100:1: error: stray ‘\350’ in program ../platform.h:100:1: error: stray ‘\246’ in program ../platform.h:100:1: error: stray ‘\260’ in program ../platform.h:100:1: error: stray ‘\337’ in program ../platform.h:100:1: error: stray ‘\350’ in program ../platform.h:100:1: error: stray ‘\373’ in program ../platform.h:100:1: error: stray ‘\374’ in program ../platform.h:100:1: error: stray ‘\325’ in program ../platform.h:100:1: error: stray ‘\355’ in program ../platform.h:100:1: error: stray ‘\235’ in program ../platform.h:100:1: error: stray ‘\272’ in program ../platform.h:100:1: error: stray ‘\353’ in program ../platform.h:100:1: error: stray ‘\343’ in program ../platform.h:100:1: error: stray ‘\270’ in program ../platform.h:100:1: error: stray ‘\334’ in program ../platform.h:100:1: error: stray ‘\251’ in program ../platform.h:100:1: error: stray ‘\233’ in program ../platform.h:100:79: warning: null character(s) ignored ../platform.h:100:1: error: stray ‘\201’ in program ../platform.h:100:1: error: stray ‘\265’ in program ../platform.h:100:1: error: stray ‘\377’ in program ../platform.h:100:1: error: stray ‘\22’ in program ../platform.h:100:1: error: stray ‘\316’ in program ../platform.h:100:1: error: stray ‘\343’ in program ../platform.h:100:1: error: stray ‘\305’ in program ../platform.h:100:1: error: stray ‘\353’ in program ../platform.h:100:1: error: stray ‘\256’ in program ../platform.h:100:1: error: stray ‘\334’ in program ../platform.h:100:1: error: stray ‘\216’ in program ../platform.h:100:1: error: stray ‘\277’ in program ../platform.h:100:1: error: stray ‘\313’ in program ../platform.h:100:1: error: stray ‘\302’ in program ../platform.h:100:1: error: stray ‘\204’ in program ../platform.h:100:1: error: stray ‘\372’ in program ../platform.h:100:1: error: stray ‘\241’ in program ../platform.h:100:1: error: stray ‘\247’ in program ../platform.h:100:1: error: stray ‘\274’ in program ../platform.h:100:1: error: stray ‘\206’ in program ../platform.h:100:1: error: stray ‘\267’ in program ../platform.h:100:1: error: stray ‘\300’ in program ../platform.h:100:1: error: stray ‘\35’ in program ../platform.h:100:1: error: stray ‘\357’ in program ../platform.h:100:1: error: stray ‘\301’ in program ../platform.h:100:1: error: stray ‘\262’ in program ../platform.h:100:1: error: stray ‘`’ in program ../platform.h:100:1: error: stray ‘\363’ in program ../platform.h:100:1: error: stray ‘\343’ in program ../platform.h:100:1: error: stray ‘\353’ in program ../platform.h:100:1: error: stray ‘\226’ in program ../platform.h:100:1: error: stray ‘\372’ in program ../platform.h:100:1: error: stray ‘\267’ in program ../platform.h:100:1: error: stray ‘\341’ in program ../platform.h:100:1: error: stray ‘`’ in program ../platform.h:100:1: error: stray ‘\214’ in program ../platform.h:100:1: error: stray ‘\272’ in program ../platform.h:100:1: error: stray ‘\320’ in program ../platform.h:100:1: error: stray ‘\230’ in program ../platform.h:100:1: error: stray ‘\263’ in program ../platform.h:100:1: error: stray ‘\370’ in program ../platform.h:100:1: error: stray ‘\377’ in program ../platform.h:100:1: error: stray ‘\27’ in program ../platform.h:100:144: error: stray ‘@’ in program ../platform.h:100:1: error: stray ‘\266’ in program ../platform.h:100:146: warning: null character(s) ignored ubuntu@pine64:~/Solaris2/mlucas-14.1/src/MY_OBJ$ [/CODE] |
| All times are UTC. The time now is 04:24. |
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, Jelsoft Enterprises Ltd.