Please use GitHub pull requests for new patches. Avoid migrating existing patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
lldb/packages/Python/lldbsuite/test/make/Makefile.rules
Show First 20 Lines • Show All 409 Lines • ▼ Show 20 Lines | else ifeq "$(OS)" "Android" | ||||
# Android.rules. | # Android.rules. | ||||
else | else | ||||
CXXFLAGS += -stdlib=libc++ | CXXFLAGS += -stdlib=libc++ | ||||
LDFLAGS += -stdlib=libc++ | LDFLAGS += -stdlib=libc++ | ||||
endif | endif | ||||
endif | endif | ||||
#---------------------------------------------------------------------- | #---------------------------------------------------------------------- | ||||
# Additional system libraries | |||||
#---------------------------------------------------------------------- | |||||
ifeq (1,$(USE_LIBDL)) | |||||
ifneq ($(OS),NetBSD) | |||||
LDFLAGS += -ldl | |||||
endif | |||||
endif | |||||
#---------------------------------------------------------------------- | |||||
# dylib settings | # dylib settings | ||||
#---------------------------------------------------------------------- | #---------------------------------------------------------------------- | ||||
ifneq "$(strip $(DYLIB_C_SOURCES))" "" | ifneq "$(strip $(DYLIB_C_SOURCES))" "" | ||||
DYLIB_OBJECTS +=$(strip $(DYLIB_C_SOURCES:.c=.o)) | DYLIB_OBJECTS +=$(strip $(DYLIB_C_SOURCES:.c=.o)) | ||||
endif | endif | ||||
ifneq "$(strip $(DYLIB_OBJC_SOURCES))" "" | ifneq "$(strip $(DYLIB_OBJC_SOURCES))" "" | ||||
DYLIB_OBJECTS +=$(strip $(DYLIB_OBJC_SOURCES:.m=.o)) | DYLIB_OBJECTS +=$(strip $(DYLIB_OBJC_SOURCES:.m=.o)) | ||||
▲ Show 20 Lines • Show All 301 Lines • Show Last 20 Lines |