diff options
author | Nick White <hg@njw.me.uk> | 2011-07-16 23:53:39 +0100 |
---|---|---|
committer | Nick White <hg@njw.me.uk> | 2011-07-16 23:53:39 +0100 |
commit | 16540dfbb2bda2a9d6873c070f3d6728470e07b8 (patch) | |
tree | b371563ecf12afa54b4e53763fe8eb84e1da21a9 | |
parent | 721770691c964dbd630716add95a362a0cecba4d (diff) |
Build statically with musl by default
-rw-r--r-- | config.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |