am 4f92abad
: Merge "Two quick fixes: fix kernel header location and nostdlib."
* commit '4f92abad95f724c0bf29c93d6b1c8fff41049007': Two quick fixes: fix kernel header location and nostdlib.
This commit is contained in:
commit
24834ffddd
1 changed files with 2 additions and 2 deletions
|
@ -135,7 +135,7 @@ ifneq ($(CUSTOM_KERNEL_HEADERS),)
|
|||
KERNEL_HEADERS_ARCH := $(CUSTOM_KERNEL_HEADERS)
|
||||
else
|
||||
KERNEL_HEADERS_COMMON := $(libc_root)/kernel/uapi
|
||||
KERNEL_HEADERS_ARCH := $(libc_root)/kernel/uapi/arch-$(TARGET_ARCH)
|
||||
KERNEL_HEADERS_ARCH := $(libc_root)/kernel/uapi/asm-$(TARGET_ARCH)
|
||||
endif
|
||||
KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH)
|
||||
|
||||
|
@ -211,7 +211,7 @@ $(hide) $(PRIVATE_CXX) -nostdlib -Bdynamic -fPIE -pie \
|
|||
endef
|
||||
|
||||
define transform-o-to-static-executable-inner
|
||||
$(hide) $(PRIVATE_CXX) -Bstatic \
|
||||
$(hide) $(PRIVATE_CXX) -nostdlib -Bstatic \
|
||||
-o $@ \
|
||||
$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
|
||||
$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_STATIC_O)) \
|
||||
|
|
Loading…
Reference in a new issue