Lines Matching +full:cxx +full:- +full:compiler
8 # http://www.apache.org/licenses/LICENSE-2.0
16 if [ -z "$CXX" ]
18 …echo "please set the CXX environment variable to point to your native Android toolchain C++ compil…
22 default_cflags="-O3"
24 if [ "$#" -eq 0 ]
27 echo "All command-line parameters are passed along to the C++ compiler, so they can \
28 be either source files, or compiler flags."
30 echo "Relies on the CXX environment variable to point to an Android C++ toolchain compiler."
34 EXE=gemmlowp-android-binary
36 if [[ $CXX =~ .*aarch64.* ]]
40 NEON_FLAGS="-mfpu=neon -mfloat-abi=softfp"
43 $CXX \
44 --std=c++11 \
45 -Wall -Wextra -pedantic \
46 -fPIE -pie $NEON_FLAGS \
47 -lstdc++ -latomic \
48 -I . -I .. \
49 -o $EXE \
50 -Wno-unused-variable -Wno-unused-parameter \
66 adb shell mkdir -p /data/local/tmp
82 adb shell "/data/local/tmp/$EXE $TESTARGS" | tee "log-$EXE"