glibc hates stripping

This commit is contained in:
Connor Lane Smith 2011-06-01 21:31:22 +01:00
parent 97b6c267ce
commit 726973dcd5
2 changed files with 3 additions and 3 deletions

View File

@ -26,8 +26,8 @@ cat.o grep.o tail.o: text.h
@$(CC) -c -o $@ $< $(CFLAGS)
util.a: $(LIB)
@echo AR rc $@
@$(AR) rc $@ $(LIB)
@echo AR -r $@
@$(AR) -r -c $@ $(LIB)
dist: clean
@echo creating dist tarball

View File

@ -6,7 +6,7 @@ VERSION = 0.0
LD = $(CC)
CPPFLAGS = -D_POSIX_C_SOURCE=200112L
CFLAGS = -Os -ansi -Wall -pedantic $(CPPFLAGS)
LDFLAGS = -s -static
LDFLAGS = -static #-s
#CC = tcc
#LD = $(CC)