mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-23 03:21:20 +01:00
Compile Stockfish with LTO for all CPU types
Use link time optimization when compiling Stockfish for all CPU types.
This commit is contained in:
parent
1871f1d54a
commit
150082a57f
|
@ -12,7 +12,7 @@ ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
|
|||
MY_ARCH_DEF += -DUSE_NEON -mthumb -march=armv7-a -mfloat-abi=softfp -mfpu=neon
|
||||
endif
|
||||
ifeq ($(TARGET_ARCH_ABI),arm64-v8a)
|
||||
MY_ARCH_DEF += -DIS_64BIT -DUSE_POPCNT -DUSE_NEON -flto=thin
|
||||
MY_ARCH_DEF += -DIS_64BIT -DUSE_POPCNT -DUSE_NEON
|
||||
endif
|
||||
ifeq ($(TARGET_ARCH_ABI),x86_64)
|
||||
MY_ARCH_DEF += -DIS_64BIT -DUSE_SSE41 -msse4.1
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
LOCAL_SRC_FILES := $(SF_SRC_FILES)
|
||||
LOCAL_CFLAGS := -std=c++17 -O3 -fno-exceptions -DNNUE_EMBEDDING_OFF -DUSE_PTHREADS \
|
||||
-fPIE $(MY_ARCH_DEF) -s
|
||||
-fPIE $(MY_ARCH_DEF) -s -flto=thin
|
||||
LOCAL_LDFLAGS += -fPIE -s -flto=thin
|
||||
include $(BUILD_EXECUTABLE)
|
||||
|
|
Loading…
Reference in New Issue
Block a user