Revert: llvm-svn: 373061 It broke OSX testsuite: https://reviews.llvm.org/D67589#1686150 lldb/packages/Python/lldbsuite/test/macosx/function-starts/TestFunctionStarts.py llvm-svn: 373110
17 lines
282 B
Makefile
17 lines
282 B
Makefile
C_SOURCES := main.c
|
|
|
|
ifeq "$(OS)" ""
|
|
OS = $(shell uname -s)
|
|
endif
|
|
|
|
ifeq "$(OS)" "Darwin"
|
|
LDFLAGS = $(CFLAGS) -Xlinker -dead_strip
|
|
else
|
|
CFLAGS += -fdata-sections -ffunction-sections
|
|
LDFLAGS = $(CFLAGS) -Wl,--gc-sections
|
|
endif
|
|
|
|
MAKE_DSYM := NO
|
|
|
|
include Makefile.rules
|