We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building on the M1 fails with SDL2 not being located.
I had come across this issue before on another project, and fixed it by removing the SDL2/ directory when adding an include.
SDL2/
For example, include "SDL2/SDL.h" should be changed to include "SDL.h"
include "SDL2/SDL.h"
include "SDL.h"
I did this for the following files until it built:
isr.c modexlib.c rt_in.c rt_main.c rt_menu.c rt_uitl.c dukemusc.c audiolib/dsl.c
Note some of the above files had multiple SDL2 references.
Also there may be other references elsewhere, but just changing the above fixes the default build at least.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Building on the M1 fails with SDL2 not being located.
I had come across this issue before on another project, and fixed it by removing the
SDL2/
directory when adding an include.For example,
include "SDL2/SDL.h"
should be changed toinclude "SDL.h"
I did this for the following files until it built:
isr.c
modexlib.c
rt_in.c
rt_main.c
rt_menu.c
rt_uitl.c
dukemusc.c
audiolib/dsl.c
Note some of the above files had multiple SDL2 references.
Also there may be other references elsewhere, but just changing the above fixes the default build at least.
The text was updated successfully, but these errors were encountered: