Open jason5122 opened 4 years ago
Thanks for the response, but I believe I tried building with -Wno-error
(as you can see in the screenshot above), and #include <stdio.h>
was already in the header of tools/aiff_extract_codebook.c
. Do you know why I am still getting this error even with those steps?
Thanks for the response, but I believe I tried building with
-Wno-error
(as you can see in the screenshot above), and#include <stdio.h>
was already in the header oftools/aiff_extract_codebook.c
. Do you know why I am still getting this error even with those steps?
Hmm, try to cd into the 'tools' directory and 'make clean'. Then try again. If that fails can you copy the contents of 'tools/aiff_extract_codebook.c' and paste it here?
Tried again after a fresh clone and no luck. Here is the output I get when running gmake OSX_BUILD=1
:
output.txt
Here is the aiff_extract_codebook.c
:
aiff_extract_codebook.c.zip
Tried again after a fresh clone and no luck. Here is the output I get when running
gmake OSX_BUILD=1
: output.txtHere is the
aiff_extract_codebook.c
: aiff_extract_codebook.c.zip
Thanks, this is so strange. Can you try adding:
-Wno-error=implicit-function-declaration
to the tools makefile instead of -Wno-error? If that fails, maybe you'll want to try using a different compiler then Apple clang as this is clang-specific AFAIK.
My guess is that macOS 11+ needs the vsnprintf declared for this in order to fix this error
fixed in #489
Hi, I encounter this error when building on macOS 11.0.1:
I ran
brew install make mingw-w64 gcc sdl2 pkg-config glew glfw3 libusb
before this. I've also mostly followed the instructions and troubleshooting in #26, #235, and #442, though all were unsuccessful. Can anyone help or reproduce? Thanks!