diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-01 00:21:20 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-01 00:21:20 -0500 |
commit | 15d143b547c5462c3cd0406f85896861a7be50cd (patch) | |
tree | af6bd859e0307b20fe5a0192deeecfed33612af2 /Makefile | |
parent | d36751943a35e884a8889895c3d6fae52a93fc9b (diff) | |
download | musl-15d143b547c5462c3cd0406f85896861a7be50cd.tar.gz musl-15d143b547c5462c3cd0406f85896861a7be50cd.tar.xz musl-15d143b547c5462c3cd0406f85896861a7be50cd.zip |
search internal headers first
this is necessitated by the ugly <syscall.h> just added
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 15ab4fc4..7aa6c4f3 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ GENH = include/bits/alltypes.h CFLAGS = -Os -nostdinc -ffreestanding -std=c99 -D_XOPEN_SOURCE=700 -pipe LDFLAGS = -nostdlib -shared -fPIC -Wl,-e,_start -Wl,-Bsymbolic-functions -INC = -I./include -I./src/internal -I./arch/$(ARCH) +INC = -I./src/internal -I./include -I./arch/$(ARCH) PIC = -fPIC -O3 AR = $(CROSS_COMPILE)ar RANLIB = $(CROSS_COMPILE)ranlib |