Fix musl build not actually statically linking musl

This commit is contained in:
jaburns
2022-04-15 13:41:32 -06:00
parent 15986c636f
commit 1dfcce07bb
+2 -1
View File
@@ -2,11 +2,12 @@ default: lib
ifdef LIBSM64_MUSL
CC := musl-gcc
LDFLAGS := -lm -static -shared
else
CC := cc
LDFLAGS := -lm -shared
endif
CFLAGS := -g -Wall -fPIC -DSM64_LIB_EXPORT
LDFLAGS := -lm -shared
SRC_DIRS := src src/decomp src/decomp/engine src/decomp/game src/decomp/mario src/decomp/tools
BUILD_DIR := build