* commit '72e9dab0127e4200d5770d0fa7944fc0db29632b': Add the search path for libgcc.a and crt*.o.
This commit is contained in:
commit
281778a373
1 changed files with 7 additions and 7 deletions
|
@ -125,6 +125,8 @@ libm_root := bionic/libm
|
|||
libstdc++_root := bionic/libstdc++
|
||||
libthread_db_root := bionic/libthread_db
|
||||
|
||||
TARGET_LIBGCC := $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) \
|
||||
-print-libgcc-file-name)
|
||||
|
||||
# unless CUSTOM_KERNEL_HEADERS is defined, we're going to use
|
||||
# symlinks located in out/ to point to the appropriate kernel
|
||||
|
@ -148,14 +150,12 @@ TARGET_C_INCLUDES := \
|
|||
$(libm_root)/include/aarch64 \
|
||||
$(libthread_db_root)/include
|
||||
|
||||
# FIXME
|
||||
# CRT* objects to be added later
|
||||
TARGET_CRTBEGIN_STATIC_O :=
|
||||
TARGET_CRTBEGIN_DYNAMIC_O :=
|
||||
TARGET_CRTEND_O :=
|
||||
TARGET_CRTBEGIN_STATIC_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_static.o
|
||||
TARGET_CRTBEGIN_DYNAMIC_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_dynamic.o
|
||||
TARGET_CRTEND_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_android.o
|
||||
|
||||
TARGET_CRTBEGIN_SO_O :=
|
||||
TARGET_CRTEND_SO_O :=
|
||||
TARGET_CRTBEGIN_SO_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_so.o
|
||||
TARGET_CRTEND_SO_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_so.o
|
||||
|
||||
TARGET_STRIP_MODULE:=true
|
||||
|
||||
|
|
Loading…
Reference in a new issue