mirror of
https://framagit.org/tom79/fedilab-tube
synced 2025-06-05 21:09:11 +02:00
20 lines
528 B
Plaintext
20 lines
528 B
Plaintext
import os ;
|
|
|
|
ANDROID_TOOLCHAIN = [ os.environ ANDROID_TOOLCHAIN ] ;
|
|
ANDROID_API = [ os.environ android_api ] ;
|
|
|
|
using clang : arm64 : $(ANDROID_TOOLCHAIN)/bin/aarch64-linux-android$(ANDROID_API)-clang++ :
|
|
<cxxflags>-fPIC
|
|
<cxxflags>-march=armv8-a+crc
|
|
<cxxflags>-std=c++14
|
|
<cxxflags>-DANDROID
|
|
<cxxflags>-fno-strict-aliasing
|
|
<cxxflags>-fvisibility=hidden
|
|
<linkflags>-static-libstdc++
|
|
# debug information
|
|
<cxxflags>-g
|
|
<cxxflags>-gdwarf-4
|
|
<cxxflags>-fdebug-macro
|
|
<cxxflags>-ggdb
|
|
;
|