Make it easy to build without crt0

This commit is contained in:
topjohnwu
2024-02-24 22:32:22 -08:00
parent 47e6dd286d
commit 365b373480
3 changed files with 11 additions and 7 deletions

View File

@@ -59,13 +59,9 @@ endif
ifdef B_INIT
# -lc -lm is hardcoded in this variable, disable it
TARGET_LDLIBS :=
include $(CLEAR_VARS)
LOCAL_MODULE := magiskinit
LOCAL_STATIC_LIBRARIES := \
crt0 \
libbase \
libpolicy \
libxz \
@@ -80,6 +76,14 @@ LOCAL_SRC_FILES := \
init/selinux.cpp \
init/init-rs.cpp
LOCAL_LDFLAGS := -static
ifdef B_CRT0
# -lc -lm is hardcoded in this variable, disable it
TARGET_LDLIBS :=
LOCAL_STATIC_LIBRARIES += crt0
endif
include $(BUILD_EXECUTABLE)
endif