mirror of
https://framagit.org/tom79/fedilab-tube
synced 2025-02-16 20:10:51 +01:00
18 lines
494 B
Plaintext
18 lines
494 B
Plaintext
|
import os ;
|
||
|
|
||
|
ANDROID_TOOLCHAIN = [ os.environ ANDROID_TOOLCHAIN ] ;
|
||
|
android_api = [ os.environ android_api ] ;
|
||
|
using clang : x86_64 : $(ANDROID_TOOLCHAIN)/bin/x86_64-linux-android$(android_api)-clang++ :
|
||
|
<cxxflags>-fPIC
|
||
|
<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
|
||
|
;
|