summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <hg@njw.me.uk>2011-07-16 23:53:39 +0100
committerNick White <hg@njw.me.uk>2011-07-16 23:53:39 +0100
commit16540dfbb2bda2a9d6873c070f3d6728470e07b8 (patch)
treeb371563ecf12afa54b4e53763fe8eb84e1da21a9
parent721770691c964dbd630716add95a362a0cecba4d (diff)
Build statically with musl by default
-rw-r--r--config.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.mk b/config.mk
index 42c5654..4b143fe 100644
--- a/config.mk
+++ b/config.mk
@@ -6,8 +6,8 @@ PREFIX = /usr/local
# flags
CFLAGS = -ansi -pedantic -Wall -Wextra -Werror -g -D_POSIX_C_SOURCE=200112L -DVERSION=\"$(VERSION)\"
-LDFLAGS =
+LDFLAGS = -static
# compiler and linker
-CC = cc
+CC = musl-gcc
LD = ld