From 46e8d5f0690f4d8c4184e47d6f62fb3f409901b9 Mon Sep 17 00:00:00 2001 From: Nick White Date: Sun, 17 Jul 2011 16:22:30 +0100 Subject: Separate glibc & musl options in config.mk --- config.mk | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'config.mk') diff --git a/config.mk b/config.mk index 5be8319..4489242 100644 --- a/config.mk +++ b/config.mk @@ -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 -- cgit v1.2.3