(cd microcode && make all) make[1]: Entering directory '/home/dalanicolai/opt/mit-scheme-11.2-x86-64/mit-scheme-11.2/src/microcode' gcc -DHAVE_CONFIG_H -DMIT_SCHEME -DDEFAULT_LIBRARY_PATH=\"/usr/local/lib/mit-scheme-x86-64-11.2\" -I. -I. -O3 -frounding-math -fno-builtin-floor -Wall -Wclobbered -Wempty-body -Wignored-qualifiers -Wimplicit-fallthrough -Wmissing-field-initializers -Wmissing-parameter-type -Wnested-externs -Wold-style-declaration -Woverride-init -Wpointer-arith -Wredundant-decls -Wshift-negative-value -Wtype-limits -Wundef -Wuninitialized -Wwrite-strings -Wno-error=stringop-truncation -Werror -o chacha12.o -c chacha12.c In file included from chacha12.c:49: chacha.i:80:22: error: argument 1 of type ‘uint8_t *’ {aka ‘unsigned char *’} declared as a pointer [-Werror=array-parameter=] 80 | chacha_core(uint8_t *out, const uint8_t *in, const uint8_t *k, | ~~~~~~~~~^~~ In file included from chacha.i:34, from chacha12.c:49: chacha.h:44:23: note: previously declared as an array ‘uint8_t[64]’ {aka ‘unsigned char[64]’} 44 | void chacha12_core(uint8_t[chacha_core_OUTPUTBYTES], | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from chacha12.c:49: chacha.i:80:42: error: argument 2 of type ‘const uint8_t *’ {aka ‘const unsigned char *’} declared as a pointer [-Werror=array-parameter=] 80 | chacha_core(uint8_t *out, const uint8_t *in, const uint8_t *k, | ~~~~~~~~~~~~~~~^~ In file included from chacha.i:34, from chacha12.c:49: chacha.h:45:13: note: previously declared as an array ‘const uint8_t[16]’ {aka ‘const unsigned char[16]’} 45 | const uint8_t[chacha_core_INPUTBYTES], | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from chacha12.c:49: chacha.i:80:61: error: argument 3 of type ‘const uint8_t *’ {aka ‘const unsigned char *’} declared as a pointer [-Werror=array-parameter=] 80 | chacha_core(uint8_t *out, const uint8_t *in, const uint8_t *k, | ~~~~~~~~~~~~~~~^ In file included from chacha.i:34, from chacha12.c:49: chacha.h:46:13: note: previously declared as an array ‘const uint8_t[32]’ {aka ‘const unsigned char[32]’} 46 | const uint8_t[chacha_core_KEYBYTES], | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from chacha12.c:49: chacha.i:81:20: error: argument 4 of type ‘const uint8_t *’ {aka ‘const unsigned char *’} declared as a pointer [-Werror=array-parameter=] 81 | const uint8_t *c) | ~~~~~~~~~~~~~~~^ In file included from chacha.i:34, from chacha12.c:49: chacha.h:47:13: note: previously declared as an array ‘const uint8_t[16]’ {aka ‘const unsigned char[16]’} 47 | const uint8_t[chacha_core_CONSTBYTES]); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cc1: all warnings being treated as errors make[1]: *** [Makefile:182: chacha12.o] Error 1 make[1]: Leaving directory '/home/dalanicolai/opt/mit-scheme-11.2-x86-64/mit-scheme-11.2/src/microcode' make: *** [Makefile:796: microcode/scheme] Error 2