summaryrefslogtreecommitdiffstats
path: root/lldb/test/functionalities/dead-strip/Makefile
blob: 3a09ece236ee0fc1f0cee51b3be0b9b4b9154e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
OpenPOWER on IntegriCloud