forked from OSchip/llvm-project
Patch from Dan Malea daniel.malea@gmail.com to add some required
flags to the Linux makefiles to get the tests to run. llvm-svn: 167600
This commit is contained in:
parent
7d37f05a44
commit
28826a491c
|
@ -1,5 +1,6 @@
|
|||
LEVEL = ../../make
|
||||
|
||||
CFLAGS_EXTRAS := -lpthread
|
||||
C_SOURCES := locking.c
|
||||
|
||||
include $(LEVEL)/Makefile.rules
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
LEVEL = ../../../make
|
||||
|
||||
LDFLAGS := -lpthread
|
||||
CXX_SOURCES := main.cpp
|
||||
|
||||
include $(LEVEL)/Makefile.rules
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
LEVEL = ../../../make
|
||||
|
||||
LDFLAGS := -lpthread
|
||||
CXX_SOURCES := main.cpp
|
||||
|
||||
include $(LEVEL)/Makefile.rules
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
LEVEL = ../../../make
|
||||
|
||||
LDFLAGS := -lpthread
|
||||
CXX_SOURCES := main.cpp
|
||||
|
||||
include $(LEVEL)/Makefile.rules
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
LEVEL = ../../../make
|
||||
|
||||
LDFLAGS := -lpthread
|
||||
CXX_SOURCES := main.cpp
|
||||
|
||||
include $(LEVEL)/Makefile.rules
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
LEVEL = ../../../make
|
||||
|
||||
C_SOURCES := main.c
|
||||
CFLAGS_EXTRAS += -fblocks
|
||||
|
||||
include $(LEVEL)/Makefile.rules
|
||||
|
|
|
@ -3,5 +3,6 @@ LEVEL = ../../../make
|
|||
DYLIB_NAME := libfoo
|
||||
DYLIB_C_SOURCES := foo.c
|
||||
C_SOURCES := main.c
|
||||
CFLAGS_EXTRAS += -fPIC
|
||||
|
||||
include $(LEVEL)/Makefile.rules
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
LEVEL = ../../../make
|
||||
|
||||
CFLAGS_EXTRAS := -D__STDC_LIMIT_MACROS
|
||||
LDFLAGS := -lpthread
|
||||
CXX_SOURCES := main.cpp
|
||||
MAKE_DSYM :=NO
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
LEVEL = ../../../make
|
||||
|
||||
CFLAGS_EXTRAS := -D__STDC_LIMIT_MACROS
|
||||
LDFLAGS := -lpthread
|
||||
CXX_SOURCES := main.cpp
|
||||
MAKE_DSYM :=NO
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
LEVEL = ../../make
|
||||
|
||||
CFLAGS_EXTRAS := -D__STDC_LIMIT_MACROS
|
||||
LDFLAGS := -lpthread
|
||||
CXX_SOURCES := main.cpp b.cpp c.cpp
|
||||
MAKE_DSYM :=NO
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
LEVEL = ../../../make
|
||||
|
||||
LDFLAGS := -lpthread
|
||||
CXX_SOURCES := main.cpp
|
||||
|
||||
include $(LEVEL)/Makefile.rules
|
||||
|
|
Loading…
Reference in New Issue