This should help prevent broken builds next time I'm messing with assembler/compiler/linker flags... Change-Id: I30f15a3ce3c3f3c60cad7bc59aaba9f42d792224
		
			
				
	
	
		
			46 lines
		
	
	
		
			972 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			972 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
LOCAL_PATH:= $(call my-dir)
 | 
						|
 | 
						|
# Common C++ flags to build this library.
 | 
						|
# Note that we need to access private Bionic headers
 | 
						|
# and define ANDROID_SMP accordingly.
 | 
						|
libstdc++_cflags := -Ibionic/libc/
 | 
						|
ifeq ($(TARGET_CPU_SMP),true)
 | 
						|
    libstdc++_cflags += -DANDROID_SMP=1
 | 
						|
else
 | 
						|
    libstdc++_cflags += -DANDROID_SMP=0
 | 
						|
endif
 | 
						|
 | 
						|
include $(CLEAR_VARS)
 | 
						|
 | 
						|
LOCAL_SRC_FILES:= \
 | 
						|
	src/one_time_construction.cpp \
 | 
						|
	src/new.cpp \
 | 
						|
	src/pure_virtual.cpp \
 | 
						|
	src/typeinfo.cpp
 | 
						|
 | 
						|
LOCAL_MODULE:= libstdc++
 | 
						|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
 | 
						|
 | 
						|
LOCAL_CFLAGS := $(libstdc++_cflags)
 | 
						|
 | 
						|
LOCAL_SYSTEM_SHARED_LIBRARIES := libc
 | 
						|
 | 
						|
include $(BUILD_SHARED_LIBRARY)
 | 
						|
 | 
						|
include $(CLEAR_VARS)
 | 
						|
 | 
						|
LOCAL_SRC_FILES:= \
 | 
						|
	src/one_time_construction.cpp \
 | 
						|
	src/new.cpp \
 | 
						|
	src/pure_virtual.cpp \
 | 
						|
	src/typeinfo.cpp
 | 
						|
 | 
						|
LOCAL_CFLAGS := $(libstdc++_cflags)
 | 
						|
 | 
						|
LOCAL_MODULE:= libstdc++
 | 
						|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
 | 
						|
 | 
						|
LOCAL_SYSTEM_SHARED_LIBRARIES := libc
 | 
						|
 | 
						|
include $(BUILD_STATIC_LIBRARY)
 |