mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 01:27:16 +08:00
Fix compile for Android 5
Android 5 can only run position independent executables. Note that this breaks Android 4.0 and earlier. See here for more info: http://stackoverflow.com/questions/24818902/running-a-native-library-on-android-l-error-only-position-independent-executab Thanks to Peter Osterlund for the support. No functional change
This commit is contained in:
@@ -310,6 +310,14 @@ ifeq ($(comp),gcc)
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
### 3.12 Android 5 can only run position independent executables. Note that this
|
||||||
|
### breaks Android 4.0 and earlier.
|
||||||
|
ifeq ($(arch),armv7)
|
||||||
|
CXXFLAGS += -fPIE
|
||||||
|
LDFLAGS += -fPIE -pie
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
### ==========================================================================
|
### ==========================================================================
|
||||||
### Section 4. Public targets
|
### Section 4. Public targets
|
||||||
### ==========================================================================
|
### ==========================================================================
|
||||||
|
|||||||
Reference in New Issue
Block a user