[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / lldb / test / API / functionalities / dead-strip / Makefile
blob3e7e139ddd603e520798819701cef85b1cf39031
1 C_SOURCES := main.c
3 ifeq "$(OS)" ""
4 OS = $(shell uname -s)
5 endif
7 ifeq "$(OS)" "Darwin"
8 LD_EXTRAS = -Xlinker -dead_strip
9 else
10 CFLAGS_EXTRAS += -fdata-sections -ffunction-sections
11 ifeq "$(OS)" "Windows_NT"
12 LD_EXTRAS = -Xlinker /OPT:REF
13 else
14 LD_EXTRAS = -Wl,--gc-sections
15 endif
16 endif
18 MAKE_DSYM := NO
20 include Makefile.rules