/ndk/toolchains/x86_64-4.9/ |
config.mk | 16 # config file for the x86_64 gcc-4.9 toolchain for the Android NDK
|
setup.mk | 17 # toolchain any number of source files 64 # this toolchain's generated binaries
|
/ndk/toolchains/x86_64-clang3.4/ |
config.mk | 16 # config file for the x86_64 clang-3.4 toolchain for the Android NDK
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/libexec/gcc/x86_64-w64-mingw32/4.8.3/install-tools/ |
mkheaders | 56 prefix=/tmp/build-mingw64-toolchain-digit/install-x86_64-linux-gnu/x86_64-w64-mingw32
|
/external/chromium_org/tools/gn/ |
target.cc | 117 DCHECK(toolchain_) << "Toolchain should have been set before resolving."; 159 << "Toolchain must be specified before getting the computed output name."; 177 bool Target::SetToolchain(const Toolchain* toolchain, Err* err) { 180 toolchain_ = toolchain; 182 const Tool* tool = toolchain->GetToolForTargetFinalOutput(this); 192 "uses toolchain %s\n" 198 Toolchain::ToolTypeToName( 199 toolchain->GetToolTypeForTargetFinalOutput(this)).c_str()));
|
trace.h | 49 // Optional toolchain label. 50 const std::string& toolchain() const { return toolchain_; } function in class:TraceItem
|
ninja_target_writer.cc | 148 CHECK(target_->toolchain()) 149 << "Toolchain not set on target " 166 target_->toolchain()->deps().empty()) 186 << Toolchain::ToolTypeToName(Toolchain::TYPE_STAMP); 222 // Toolchain dependencies. These must be resolved before doing anything. 223 // This just writs all toolchain deps for simplicity. If we find that 225 // a toolchain-specific stamp file and only include the stamp here. 226 const LabelTargetVector& toolchain_deps = target_->toolchain()->deps(); 257 << Toolchain::ToolTypeToName(Toolchain::TYPE_STAMP) [all...] |
loader.cc | 36 // Identifies one time a file is loaded in a given toolchain so we don't load 55 // Our tracking information for a toolchain. 57 // The default toolchain label can be empty for the first time the default 58 // toolchain is loaded, since we don't know it yet. This will be fixed up 123 // should not specify a toolchain. 130 // The default build config is no dependent on the toolchain definition, 132 // toolchain name is. 149 // No reference to this toolchain found yet, make one. 154 // Schedule a load of the toolchain using the default one. 164 void LoaderImpl::ToolchainLoaded(const Toolchain* toolchain) [all...] |
ninja_binary_target_writer.cc | 73 tool_(target->toolchain()->GetToolForTargetFinalOutput(target)) { 92 const SubstitutionBits& subst = target_->toolchain()->substitution_bits(); 146 Toolchain::ToolType tool_type = Toolchain::TYPE_NONE; 151 if (tool_type != Toolchain::TYPE_NONE) { 154 out_ << ": " << rule_prefix << Toolchain::ToolTypeToName(tool_type); 206 << Toolchain::ToolTypeToName( 207 target_->toolchain()->GetToolTypeForTargetFinalOutput(target_)); 427 Toolchain::ToolType tool_type = Toolchain::TYPE_NONE [all...] |
builder.cc | 123 const Toolchain* Builder::GetToolchain(const Label& label) const { 239 // All targets in the default toolchain get generated by default. We also 250 Toolchain* toolchain = record->item()->AsToolchain(); local 252 if (!AddDeps(record, toolchain->deps(), err)) 255 // The default toolchain gets generated by default. Also propogate the 256 // generate flag if it depends on items in a non-default toolchain. 258 toolchain->settings()->default_toolchain_label() == toolchain->label()) 261 loader_->ToolchainLoaded(toolchain); 418 Toolchain* toolchain = record->item()->AsToolchain(); local [all...] |
trace.cc | 298 if (!item.toolchain().empty() || !item.cmdline().empty()) { 301 if (!item.toolchain().empty()) { 303 base::EscapeJSONString(item.toolchain(), true, "e_buffer); 304 out << "\"toolchain\":" << quote_buffer;
|
commands.cc | 55 // Need to resolve the label after we know the default toolchain. 104 // By default a pattern with an empty toolchain will match all toolchains. 105 // IF the caller wants to default to the main toolchain only, set it 107 if (pattern.toolchain().is_null()) { 108 // No explicit toolchain set.
|
/ndk/toolchains/x86-4.6/ |
setup.mk | 17 # toolchain any number of source files 67 # this toolchain's generated binaries
|
/ndk/toolchains/x86-4.8/ |
setup.mk | 17 # toolchain any number of source files 66 # this toolchain's generated binaries
|
/ndk/toolchains/x86-4.9/ |
setup.mk | 17 # toolchain any number of source files 66 # this toolchain's generated binaries
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
dsc2gyp.py | 132 'target_name': '%(NAME)s_%(TOOLCHAIN)s.nmf', 134 'product_dir': '<(PRODUCT_DIR)/%(TOOLCHAIN)s', 136 'make_valid_configurations': ['%(TOOLCHAIN)s-debug', '%(TOOLCHAIN)s-release'], 143 'action': ['../../tools/create_nmf.py', '-t', '%(TOOLCHAIN)s', '-s', 151 '%(toolchain)s-release' : { 154 '%(toolchain)s-debug' : { 160 '%(toolchain)s-release' : { 161 'cflags' : ['--%(toolchain)s', '-O2', 163 'ldflags' : ['--%(toolchain)s'] [all...] |
build_app.py | 70 def GetStrip(pepperdir, platform, arch, toolchain): 72 bin_dir = os.path.join(pepperdir, 'toolchain', 73 '%s_%s_%s' % (platform, base_arch, toolchain), 'bin') 113 buildbot_common.MakeDir(os.path.join(app_dir, 'toolchain'))
|
/external/chromium_org/native_client_sdk/src/tools/tests/ |
create_nmf_test.py | 29 TOOLCHAIN_OUT = os.path.join(build_paths.OUT_DIR, 'sdk_tests', 'toolchain') 91 self.toolchain = NACL_X86_GLIBC_TOOLCHAIN 92 self.objdump = os.path.join(self.toolchain, 'bin', 'i686-nacl-objdump') 104 compiler = os.path.join(self.toolchain, 'bin', '%s-nacl-g++' % arch) 130 os.path.join(self.toolchain, 'x86_64-nacl', 'lib'), 131 os.path.join(self.toolchain, 'x86_64-nacl', 'lib32')]
|
/external/chromium_org/native_client_sdk/src/tools/ |
common.mk | 11 # Toolchain 24 TOOLCHAIN ?= $(word 1,$(VALID_TOOLCHAINS)) 42 # TOOLCHAIN=all recursively calls this Makefile for all VALID_TOOLCHAINS. 44 ifeq ($(TOOLCHAIN),all) 50 # Generate a new MAKE command for each TOOLCHAIN. 52 # Note: We use targets for each toolchain (instead of an explicit recipe) so 53 # each toolchain can be built in parallel. 55 # $1 = Toolchain Name 61 +$(MAKE) TOOLCHAIN=$(1) $(MAKECMDGOALS) 73 # Define the toolchain targets for all usable toolchains via the macro [all...] |
fix_manifest.py | 32 "sub_package_path": "<toolchain>/<config>/_platform_specific/x86-64/"
|
/ndk/build/core/ |
default-build-commands.mk | 2 # This is included in setup-toolchain.mk just before the inclusion 3 # of the toolchain's specific setup.mk file which can then override 15 # This can be over-ridden by a specific toolchain. Note that by default 70 # releases due to toolchain or library changes. 118 # the toolchain's setup.mk script.
|
/ndk/build/tools/ |
build-device-llvm.sh | 29 Where <src-dir> is the location of toolchain sources, <ndk-dir> is 36 BUILD_OUT=/tmp/ndk-$USER/build/toolchain 42 register_var_option "--out-dir=<path>" OPTION_OUT_DIR "On-device toolchain will be put at <path>" 48 register_var_option "--gcc-version=<version>" OPTION_GCC_VERSION "Specify GCC toolchain version [Default: $DEFAULT_GCC_VERSION]" 55 register_option "--shared" do_shared_option "Build libLLVM*.so shared by on-device llvm toolchain, and link lib*stl_shared.so" 67 fix_option OUT_DIR "$OPTION_OUT_DIR" "On-device toolchain will be put at <path>" 74 TOOLCHAIN="llvm-$DEFAULT_LLVM_VERSION" 83 if [ ! -d "$SRC_DIR/$TOOLCHAIN/llvm" ] ; then 84 echo "ERROR: Source directory does not contain llvm sources: $SRC_DIR/$TOOLCHAIN/llvm" 108 # Check toolchain nam [all...] |
/external/qemu/distrib/ |
build-kernel.sh | 16 # For the toolchain auto-detection. 118 echo " --cross=<prefix> cross-toolchain prefix [$CROSSPREFIX]" 162 # There is no GCC 4.7 toolchain to build AARCH64 binaries. 310 # See kernel-toolchain/android-kernel-toolchain-* for details 313 CROSS_COMPILE=$(dirname "$0")/kernel-toolchain/android-kernel-toolchain-
|
/prebuilts/qemu-kernel/arm/ |
rebuild.sh | 148 --toolchain=*) 179 echo " --toolchain=<name> Toolchain name [$TOOLCHAIN_NAME]" 183 echo "The --toolchain option is ignored if you use the --cc one." 242 # Find toolchain 251 TOOLCHAIN_DIR="$ANDROID_BUILD_TOP/prebuilt/linux-x86/toolchain/$TOOLCHAIN_NAME/bin" 264 echo "Using cross-toolchain prefix: $CROSS_COMPILE"
|
/external/chromium_org/build/ |
vs_toolchain.py | 25 """Sets up os.environ to use the depot_tools VS toolchain with gyp, and 38 toolchain = toolchain_data['path'] 48 os.environ['GYP_MSVS_OVERRIDE_PATH'] = toolchain 51 # toolchain values in GYP_DEFINES, but don't want to override any 141 """Requests an update of the toolchain to the specific hashes we have at 164 """Gets location information about the current toolchain (must have been
|