Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
libcxx includes need to come before libc includes
Browse files Browse the repository at this point in the history
  • Loading branch information
misson20000 committed Jun 3, 2018
1 parent 0a0916e commit a6a3f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libtransistor.mk
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ LD_SHARED_LIBRARY_FLAGS := --shared \
-Bdynamic

CC_FLAGS := -g -fPIC -fexceptions -fuse-ld=lld -fstack-protector-strong -O3 -mtune=cortex-a53 -target aarch64-none-linux-gnu -nostdlib -nostdlibinc $(SYS_INCLUDES) -D__SWITCH__=1 -Wno-unused-command-line-argument
CXX_FLAGS := $(CC_FLAGS) -std=c++17 -stdlib=libc++ -nodefaultlibs -nostdinc++ $(CPP_INCLUDES)
CXX_FLAGS := $(CPP_INCLUDES) $(CC_FLAGS) -std=c++17 -stdlib=libc++ -nodefaultlibs -nostdinc++
AR_FLAGS := rcs
AS_FLAGS := -arch=aarch64 -triple aarch64-none-switch

Expand Down

0 comments on commit a6a3f6a

Please sign in to comment.