/system/bt/build/toolchain/gcc/ |
BUILD.gn | 17 cxx = "g++" 30 tool("cxx") { 32 command = "$cxx -MMD -MF $depfile {{defines}} {{include_dirs}} {{cflags}} {{cflags_cc}} -c {{source}} -o {{output}}" 34 description = "CXX {{output}}" 58 "$cxx -shared {{ldflags}} -o $soname -Wl,-soname=$soname @$rspfile" 80 command = "$cxx {{ldflags}} -o $outfile -Wl,--start-group @$rspfile {{solibs}} -Wl,--end-group {{libs}}"
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/ndk/test/ |
config.py | 53 self.cxx.compile_flags.append('-I' + android_support_headers) 56 self.cxx.link_flags.append('-nodefaultlibs') 59 self.cxx.link_flags.append('-L' + self.cxx_library_root) 62 self.cxx.link_flags.append('-gcc-toolchain') 63 self.cxx.link_flags.append(gcc_toolchain) 67 self.cxx.link_flags.append('-lunwind') 68 self.cxx.link_flags.append('-latomic') 70 self.cxx.link_flags.append('-lgcc') 72 self.cxx.link_flags.append('-lc++_shared') 73 self.cxx.link_flags.append('-lc' [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
_dec.h | 5 # define _STLP_NATIVE_HEADER(header) <../cxx/##header> 9 # define _STLP_NATIVE_CPP_C_HEADER(header) <../cxx/##header> 14 # define _STLP_NATIVE_OLD_STREAMS_HEADER(header) <../cxx/##header> 15 # define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <../cxx/##header>
|
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/config/ |
_dec.h | 5 # define _STLP_NATIVE_HEADER(header) <../cxx/##header> 9 # define _STLP_NATIVE_CPP_C_HEADER(header) <../cxx/##header> 14 # define _STLP_NATIVE_OLD_STREAMS_HEADER(header) <../cxx/##header> 15 # define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <../cxx/##header>
|
/ndk/tests/build/system-cpp-headers/jni/ |
Android.mk | 6 LOCAL_C_INCLUDES := $(NDK_ROOT)/sources/cxx-stl/system/include
|
/ndk/tests/device/test-unwind-struct/jni/ |
Android.mk | 9 $(call import-module,cxx-stl/stlport)
|
/ndk/tests/device/multi-static-instances/jni/ |
Android.mk | 21 $(call import-module,cxx-stl/gnu-libstdc++) 22 $(call import-module,cxx-stl/stlport) 23 $(call import-module,cxx-stl/system
|
/external/libcxx/test/libcxx/test/ |
config.py | 51 self.cxx = None 107 self.lit_config.note('Using compiler: %s' % self.cxx.path) 108 self.lit_config.note('Using flags: %s' % self.cxx.flags) 110 % self.cxx.compile_flags) 111 self.lit_config.note('Using link flags: %s' % self.cxx.link_flags) 119 self.cxx, 154 cxx = self.get_lit_conf('cxx_under_test') 158 if cxx is None: 162 cxx = clangxx 164 "inferred cxx_under_test as: %r" % cxx) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/test/ |
config.py | 51 self.cxx = None 107 self.lit_config.note('Using compiler: %s' % self.cxx.path) 108 self.lit_config.note('Using flags: %s' % self.cxx.flags) 110 % self.cxx.compile_flags) 111 self.lit_config.note('Using link flags: %s' % self.cxx.link_flags) 119 self.cxx, 154 cxx = self.get_lit_conf('cxx_under_test') 158 if cxx is None: 162 cxx = clangxx 164 "inferred cxx_under_test as: %r" % cxx) [all...] |
/external/libcxxabi/test/libcxxabi/test/ |
config.py | 29 self.cxx.compile_flags += ['-DLIBCXXABI_NO_TIMER'] 30 self.cxx.compile_flags += ['-funwind-tables'] 40 self.cxx.compile_flags += ['-I' + cxx_headers] 48 self.cxx.compile_flags += ['-I' + libcxxabi_headers] 57 self.cxx.compile_flags += ['-DLIBCXXABI_HAS_NO_THREADS=1'] 69 self.cxx.link_flags += ['-lc++abi']
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/libcxxabi/test/ |
config.py | 31 self.cxx.compile_flags += ['-DLIBCXXABI_NO_TIMER'] 41 self.cxx.compile_flags += ['-I' + cxx_headers] 49 self.cxx.compile_flags += ['-I' + libcxxabi_headers] 58 self.cxx.compile_flags += ['-DLIBCXXABI_HAS_NO_THREADS=1'] 66 self.cxx.link_flags += ['-L' + self.libcxxabi_lib_root, 76 self.cxx.link_flags += ['-lc++abi']
|
/external/libcxx/buildcmds/ |
buildcmdscc | 2 CXX=$1 5 echo $ANDROID_BUILD_TOP/$CXX > $DIR/cxx_under_test 10 | perl -ne 's/\S+\.o\b/%OUT%/; print' > $DIR/cxx.cmds 16 $CXX $ARGS
|
/external/libcxx/test/libcxx/android/test/ |
config.py | 26 'Using compiler: {}'.format(self.cxx.path)) 28 'Using compile template: {}'.format(self.cxx.cxx_template)) 30 'Using link template: {}'.format(self.cxx.link_template)) 53 cxx_template_file = os.path.join(self.build_cmds_dir, 'cxx.cmds') 59 self.cxx = libcxx.android.compiler.AndroidCXXCompiler( 63 self.config.target_triple = self.cxx.get_triple() 68 match = std_pattern.search(self.cxx.cxx_template) 76 self.cxx, 83 self.cxx,
|
format.py | 13 def __init__(self, cxx, libcxx_src_root, libcxx_obj_root, timeout, 15 self.cxx = cxx 37 def __init__(self, cxx, libcxx_src_root, libcxx_obj_root, device_dir, 41 cxx,
|
/external/libunwind/scripts/ |
make-L-files | 14 for gname in `ls G*.c G*.cxx G*.S 2>/dev/null`; do
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/android/test/ |
config.py | 26 'Using compiler: {}'.format(self.cxx.path)) 28 'Using compile template: {}'.format(self.cxx.cxx_template)) 30 'Using link template: {}'.format(self.cxx.link_template)) 53 cxx_template_file = os.path.join(self.build_cmds_dir, 'cxx.cmds') 59 self.cxx = libcxx.android.compiler.AndroidCXXCompiler( 63 self.config.target_triple = self.cxx.get_triple() 68 match = std_pattern.search(self.cxx.cxx_template) 76 self.cxx, 83 self.cxx,
|
format.py | 13 def __init__(self, cxx, libcxx_src_root, libcxx_obj_root, timeout, 15 self.cxx = cxx 39 def __init__(self, cxx, libcxx_src_root, libcxx_obj_root, device_dir, 43 cxx,
|
/ndk/tests/build/cpp-extensions/jni/ |
Android.mk | 12 foo3.cxx \
|
/ndk/tests/build/prebuild-stlport/jni/ |
Android.mk | 15 $(call import-module,cxx-stl/stlport)
|
/ndk/tests/device/test-libc++/jni/ |
Android.mk | 15 $(call import-module,cxx-stl/llvm-libc++)
|
/ndk/build/tools/ |
dev-defaults.sh | 19 STLPORT_SUBDIR=sources/cxx-stl/stlport 22 GABIXX_SUBDIR=sources/cxx-stl/gabi++ 26 GNUSTL_SUBDIR=sources/cxx-stl/gnu-libstdc++ 30 LIBCXX_SUBDIR=sources/cxx-stl/llvm-libc++ 33 LIBCXXABI_SUBDIR=sources/cxx-stl/llvm-libc++abi/libcxxabi
|
/hardware/bsp/intel/peripheral/libupm/ |
Android.mk | 21 LOCAL_CPP_EXTENSION := .cxx 25 # module. We compile all cxx file (the majority) this time and don't compile 29 LIBUPM_CXX_FILE_LIST := $(call all-named-files-under,*.cxx,src) 33 LOCAL_SRC_FILES := $(filter-out %groveloudness.cxx, $(LIBUPM_CXX_FILE_LIST))
|
/ndk/sources/host-tools/ndk-depends/ |
GNUmakefile | 18 CXX := g++ 52 define build-cxx-object 56 $$(CXX) $$(CFLAGS) $$(EXTRA_CFLAGS) -c -o $1 $2 64 $(eval $(call build-cxx-object,$(BUILD_DIR)/$(src:%.cc=%.o),$(src)))\ 71 $(CXX) $(LDFLAGS) $(OBJECTS) -o $@ $(EXTRA_LDFLAGS)
|
/ndk/tests/build/issue36131-flto-c++11/jni/ |
Android.mk | 5 LOCAL_SRC_FILES := issue36131-flto-c++11.cxx
|
/ndk/tests/device/exceptions-crash/jni/ |
Android.mk | 29 $(call import-module,cxx-stl/gnu-libstdc++
|