Some have been marked as skipIfLinux for years. The seem to be passing so I've enabled them. Differential Revision: http://reviews.llvm.org/D9428 llvm-svn: 236403
15 lines
261 B
Makefile
15 lines
261 B
Makefile
LEVEL = ../../make
|
|
|
|
C_SOURCES := main.c
|
|
|
|
ifeq "$(OS)" "Darwin"
|
|
LDFLAGS = $(CFLAGS) -Xlinker -dead_strip
|
|
else
|
|
CFLAGS += -fdata-sections -ffunction-sections
|
|
LDFLAGS = $(CFLAGS) -Wl,--gc-sections
|
|
endif
|
|
|
|
MAKE_DSYM := NO
|
|
|
|
include $(LEVEL)/Makefile.rules
|