Skip to content

Commit

Permalink
Ports: SDL2-GNUBoy shouldn't try to link against host libs
Browse files Browse the repository at this point in the history
Without this patch I'm unable to build this port because it tries
to link against my host's libgcc_s.so.
  • Loading branch information
gunnarbeutner authored and linusg committed May 7, 2021
1 parent 7004fab commit a2f919c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Ports/SDL2-GNUBoy/patches/fix-make.patch
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ index 427d696..653a5d3 100644
- make -f makefile.windows
- rm -f sys/*/*.o src/*.o
+CFLAGS = -std=c99 -Wall -O3 -I./include
+LDFLAGS = $(CFLAGS) -s `sdl2-config --cflags --libs`
+LDFLAGS = $(CFLAGS) -s -lSDL2
+ASFLAGS = $(CFLAGS)

-.PHONY: osx
Expand All @@ -33,11 +33,11 @@ index 427d696..653a5d3 100644
+
+SYS_DEFS = -DIS_LITTLE_ENDIAN -DIS_LINUX -DSOUND
+SYS_OBJS = sys/nix/nix.o
+SYS_INCS = -I/usr/local/include -I./sys/nix
+SYS_INCS = -I./sys/nix
+
+SDL_OBJS = sys/sdl2/sdl-video.o sys/sdl2/sdl-audio.o sys/sdl2/sdl-input.o
+SDL_LIBS = -L/usr/lib -lSDL2 -lpthread
+SDL_CFLAGS = -I/usr/include/SDL2 -D_GNU_SOURCE=1 -D_REENTRANT `sdl2-config --cflags --libs`
+SDL_LIBS = -lSDL2 -lpthread
+SDL_CFLAGS = -D_GNU_SOURCE=1 -D_REENTRANT `sdl2-config --cflags --libs`
+
+
+all: $(TARGETS)
Expand Down

0 comments on commit a2f919c

Please sign in to comment.