diff options
-rw-r--r-- | config.mk | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -4,10 +4,14 @@ VERSION = prealpha # paths PREFIX = /usr/local -# flags CFLAGS = -ansi -pedantic -Wall -Wextra -Werror -g -D_POSIX_C_SOURCE=200112L -DVERSION=\"$(VERSION)\" -LDFLAGS = -static #-s -# compiler and linker +# musl static CC = musl-gcc +LDFLAGS = -static #-s + +# glibc dynamic +#CC = cc +#LDFLAGS = + LD = ld |