Home
last modified time | relevance | path

Searched +full:osx +full:- +full:arm64 (Results 1 – 25 of 101) sorted by relevance

12345

/external/compiler-rt/make/platform/
Dclang_darwin.mk20 if $(LD) -v 2>&1 | grep "configured to support" \
22 if $(CC) -arch $$arch \
23 -integrated-as \
25 -isysroot $(3) \
26 -o /dev/null > /dev/null 2> /dev/null; then \
44 result=`xcrun -find $(1) 2> /dev/null`; \
50 result=`xcrun --sdk $(1).internal --show-sdk-path 2> /dev/null`; \
52 result=`xcrun --sdk $(1) --show-sdk-path 2> /dev/null`; \
59 LD := $(shell $(CC) -print-prog-name=ld)
89 UniversalArchs.ios += $(call CheckArches,armv7 arm64,ios,$(IOS_SDK))
[all …]
/external/capstone/
Dmake.sh4 # By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015
6 # Note: to cross-compile "nix32" on Linux, package gcc-multilib is required.
9 [ ${MAKE_JOBS} -lt 1 ] && \
14 if [ -z "$NDK" ]; then
19 HOSTOS=$(uname -s | tr 'LD' 'ld')
20 HOSTARCH=$(uname -m)
27 [ -n "$APILEVEL" ] || APILEVEL="android-14" # default to ICS
28 CROSS=arm-linux-androideabi
30 arm64)
31 [ -n "$APILEVEL" ] || APILEVEL="android-21" # first with arm64
[all …]
DCOMPILE.TXT2 Linux, *BSD & Solaris. We also show steps to cross-compile for Microsoft Windows.
12 *-*-*-*-*-*
30 - CAPSTONE_ARCHS: specify list of architectures to compiled in.
31 - CAPSTONE_USE_SYS_DYN_MEM: change this if you have your own dynamic memory management.
32 - CAPSTONE_DIET: use this to make the output binaries more compact.
33 - CAPSTONE_X86_REDUCE: another option to make X86 binary smaller.
34 - CAPSTONE_X86_ATT_DISABLE: disables AT&T syntax on x86.
35 - CAPSTONE_STATIC: build static library.
36 - CAPSTONE_SHARED: build dynamic (shared) library.
56 - To compile for current platform, run:
[all …]
D.travis.yml4 - export LD_LIBRARY_PATH=`pwd`/tests/:$LD_LIBRARY_PATH
6- wget https://github.com/groundx/capstonefuzz/raw/master/corpus/corpus-libFuzzer-capstone_fuzz_di…
7 - unzip -q corpus-libFuzzer-capstone_fuzz_disasmnext-latest.zip -d suite/fuzz
9 - git clone https://git.cryptomilk.org/projects/cmocka.git suite/cstest/cmocka
10 - chmod +x suite/cstest/build_cstest.sh
12 - ./make.sh
13 - make check
14 - sudo make install
15- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cp libcapstone.so.* bindings/python/libcapstone.so; …
16- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cp libcapstone.*.dylib bindings/python/libcapstone.dyl…
[all …]
DChangeLog3 ---------------------------------
9 - Fix some issues for packaging (Debian, Gentoo).
10 - Better support for building with Mingw.
11 - cstool has new option -s to turn on skipdata mode.
12 - cstool -v now report build settings of the core.
13 - Add suite/capstone_get_setup.c so users can integrate with their own code
19 - Fix 4.0 regression: the `tbh [r0, r1, lsl #1]` instruction sets the operand.shift.value back agai…
20 - Remove ARM_REG_PC group for BX instruction.
25 - Fix: endbr32 and endbr64 instructions are now properly decoded in both CS_MODE_32 and CS_MODE_64 …
30 - Fix some issues reported by clang-analyzer (#1329).
[all …]
/external/clang/test/Driver/
Dincompatible_sysroot.c1 // REQUIRES: x86-registered-target
2 // REQUIRES: aarch64-registered-target
4-target x86_64-apple-darwin -Wincompatible-sysroot -isysroot SDKs/MacOSX10.9.sdk -mios-version-min…
5-target arm64-apple-darwin -Wincompatible-sysroot -isysroot SDKs/iPhoneOS9.2.sdk -mwatchos-version
6-target arm64-apple-darwin -Wincompatible-sysroot -isysroot SDKs/iPhoneOS9.2.sdk -mtvos-version-mi…
7-target x86_64-apple-darwin -Wincompatible-sysroot -isysroot SDKs/iPhoneSimulator9.2.sdk -mios-ver…
8-target x86_64-apple-darwin -Wno-incompatible-sysroot -isysroot SDKs/MacOSX10.9.sdk -mios-version-
11 // CHECK-OSX-IOS: warning: using sysroot for 'MacOSX' but targeting 'iPhone'
12 // CHECK-IOS-WATCHOS: warning: using sysroot for 'iPhoneOS' but targeting 'Watch'
13 // CHECK-IOS-TVOS: warning: using sysroot for 'iPhoneOS' but targeting 'AppleTV'
[all …]
/external/compiler-rt/cmake/
Dbuiltin-config-ix.cmake6 builtin_check_c_compiler_flag(-fPIC COMPILER_RT_HAS_FPIC_FLAG)
7 builtin_check_c_compiler_flag(-fPIE COMPILER_RT_HAS_FPIE_FLAG)
8 builtin_check_c_compiler_flag(-fno-builtin COMPILER_RT_HAS_FNO_BUILTIN_FLAG)
9 builtin_check_c_compiler_flag(-std=c99 COMPILER_RT_HAS_STD_C99_FLAG)
10 builtin_check_c_compiler_flag(-fvisibility=hidden COMPILER_RT_HAS_VISIBILITY_HIDDEN_FLAG)
11 builtin_check_c_compiler_flag(-fomit-frame-pointer COMPILER_RT_HAS_OMIT_FRAME_POINTER_FLAG)
12 builtin_check_c_compiler_flag(-ffreestanding COMPILER_RT_HAS_FREESTANDING_FLAG)
13 builtin_check_c_compiler_flag(-mfloat-abi=soft COMPILER_RT_HAS_FLOAT_ABI_SOFT_FLAG)
14 builtin_check_c_compiler_flag(-mfloat-abi=hard COMPILER_RT_HAS_FLOAT_ABI_HARD_FLAG)
15 builtin_check_c_compiler_flag(-static COMPILER_RT_HAS_STATIC_FLAG)
[all …]
Dconfig-ix.cmake15 check_cxx_compiler_flag(-fPIC COMPILER_RT_HAS_FPIC_FLAG)
16 check_cxx_compiler_flag(-fPIE COMPILER_RT_HAS_FPIE_FLAG)
17 check_cxx_compiler_flag(-fno-builtin COMPILER_RT_HAS_FNO_BUILTIN_FLAG)
18 check_cxx_compiler_flag(-fno-exceptions COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG)
19 check_cxx_compiler_flag(-fomit-frame-pointer COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG)
20 check_cxx_compiler_flag(-funwind-tables COMPILER_RT_HAS_FUNWIND_TABLES_FLAG)
21 check_cxx_compiler_flag(-fno-stack-protector COMPILER_RT_HAS_FNO_STACK_PROTECTOR_FLAG)
22 check_cxx_compiler_flag(-fno-sanitize=safe-stack COMPILER_RT_HAS_FNO_SANITIZE_SAFE_STACK_FLAG)
23 check_cxx_compiler_flag(-fvisibility=hidden COMPILER_RT_HAS_FVISIBILITY_HIDDEN_FLAG)
24 check_cxx_compiler_flag(-frtti COMPILER_RT_HAS_FRTTI_FLAG)
[all …]
/external/libyuv/docs/
Ddeprecated_builds.md5 ## Pre-requisites
7 …need to have depot tools installed: https://www.chromium.org/developers/how-tos/install-depot-tools
32 For iOS add `;target_os=['ios'];` to your OSX .gclient and run `GYP_DEFINES="OS=ios" gclient sync.`
65 …native build files for your environment using gyp (Windows: Visual Studio, OSX: XCode, Linux: make…
77 call python gyp_libyuv -fninja -G msvs_version=2013
78 ninja -j7 -C out\Release
79 ninja -j7 -C out\Debug
82 call python gyp_libyuv -fninja -G msvs_version=2013
83 ninja -C out\Debug_x64
84 ninja -C out\Release_x64
[all …]
Dgetting_started.md5 ## Pre-requisites
7 …need to have depot tools installed: https://www.chromium.org/developers/how-tos/install-depot-tools
14 gclient config --name src https://chromium.googlesource.com/libyuv/libyuv
30 For iOS add `;target_os=['ios'];` to your OSX .gclient and run `gclient sync.`
62 call gn gen out\Release "--args=is_debug=false target_cpu=\"x64\""
63 call gn gen out\Debug "--args=is_debug=true target_cpu=\"x64\""
64 ninja -v -C out\Release
65 ninja -v -C out\Debug
67 call gn gen out\Release "--args=is_debug=false target_cpu=\"x86\""
68 call gn gen out\Debug "--args=is_debug=true target_cpu=\"x86\""
[all …]
/external/grpc-grpc/src/csharp/Grpc.Tools.Tests/
DProtoToolsPlatformTaskTest.cs9 // http://www.apache.org/licenses/LICENSE-2.0
73 if (RuntimeInformation.OSArchitecture == Architecture.Arm64) in CpuIsArm64()
77 // On macosx arm64, x64 is used until a native protoc is shipped in CpuIsArm64()
78 if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) in CpuIsArm64()
82 // On windows arm64, x86 is used until a native protoc is shipped in CpuIsArm64()
89 Assert.AreEqual("arm64", _task.Cpu); in CpuIsArm64()
117 if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) in OsIsMacOsX()
126 [Test, Platform("32-Bit")]
133 [Test, Platform("64-Bit")]
/external/aws-crt-java/codebuild/
Dmacos_compatibility_check.py10 # Exit quietly if run on a non-darwin machine.
28-l target/cmake-build/lib/osx/{}/cruntime/libaws-crt-jni.dylib | grep -A3 \'LC_VERSION_MIN_MACOSX\…
38 if re.match(r'^(aarch64|armv[6-8]|arm64)', arch):
40 # The oldest version we can target on arm64 is 11.0
42 …_cmd = "otool -l target/cmake-build/lib/osx/{}/cruntime/libaws-crt-jni.dylib | grep -E minos | tr
45 result = subprocess.check_output(otool_cmd, shell=True).decode("utf-8")
/external/python/cpython3/Lib/
D_osx_support.py15 # like "-arch" or "-isdkroot", that may need customization for
74 return fp.read().decode('utf-8').strip() if not os.system(cmd) else None
80 or _read_output("/usr/bin/xcrun -find %s" % (toolname,))
99 f = open('/System/Library/CoreServices/SystemVersion.plist', encoding="utf-8")
138 # This is needed for higher-level cross-platform tests of get_platform.
160 contents = _read_output('%s -c -E -v - </dev/null' % (cc,), True)
172 _cache_default_sysroot = line[:-12]
182 # builds, in particular -isysroot and -arch arguments to the compiler. This
189 """Returns True if arm64 builds are supported on this system"""
190 # There are two sets of systems supporting macOS/arm64 builds:
[all …]
/external/cronet/build/config/clang/
DBUILD.gn2 # Use of this source code is governed by a BSD-style license that can be
19 "-Xclang",
20 "-add-plugin",
21 "-Xclang",
22 "find-bad-constructs",
24 "-Xclang",
25 "-plugin-arg-find-bad-constructs",
26 "-Xclang",
27 "raw-ref-template-as-trivial-member",
29 "-Xclang",
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/
D.travis.yml7 - cmake
8 - lcov
9 - clang-tools-7
10 - valgrind
14 - os: linux
17 - os: linux
20 - os: linux
23 - os: linux
26 - os: linux
29 - os: linux
[all …]
/external/angle/build/config/clang/
DBUILD.gn2 # Use of this source code is governed by a BSD-style license that can be
20 "-Xclang",
21 "-add-plugin",
22 "-Xclang",
23 "raw-ptr-plugin",
25 "-Xclang",
26 "-plugin-arg-raw-ptr-plugin",
27 "-Xclang",
28 "check-raw-ptr-to-stack-allocated",
30 "-Xclang",
[all …]
/external/bazelbuild-rules_go/go/private/
Dplatforms.bzl7 # http://www.apache.org/licenses/LICENSE-2.0
21 "darwin": "@platforms//os:osx",
32 "arm64": "@platforms//cpu:aarch64",
43 ("android", "arm64"),
47 ("darwin", "arm64"),
52 ("freebsd", "arm64"),
55 ("ios", "arm64"),
60 ("linux", "arm64"),
75 ("netbsd", "arm64"),
79 ("openbsd", "arm64"),
[all …]
/external/aws-crt-java/.github/workflows/
Dci.yml5 branches-ignore:
6 - 'main'
7 - 'docs'
13 PACKAGE_NAME: aws-crt-java
14 LINUX_BASE_IMAGE: ubuntu-18-x64
15 RUN: ${{ github.run_id }}-${{ github.run_number }}
19 AWS_REGION: us-east-1
20 AWS_DEVICE_FARM_REGION: us-west-2 # Device Farm only available in us-west-2 region
23 linux-compat:
24 runs-on: ubuntu-22.04 # latest
[all …]
/external/grpc-grpc/src/csharp/Grpc.Tools/
DCommonPlatformDetection.cs9 // http://www.apache.org/licenses/LICENSE-2.0
32 public enum CpuArchitecture { Unknown, X86, X64, Arm64 }; enumerator
45 else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) in GetOSKind()
86 case Architecture.Arm64: in GetProcessArchitecture()
87 return CpuArchitecture.Arm64; in GetProcessArchitecture()
/external/sdv/vsomeip/third_party/boost/system/
D.travis.yml1 # Copyright 2016-2019 Peter Dimov
11 - master
12 - develop
13 - /feature\/.*/
17 - BOGUS_JOB=true
22 - env: BOGUS_JOB=true
25 - os: linux
31 - g++-multilib
33 - os: linux
34 arch: arm64
[all …]
/external/sdv/vsomeip/third_party/boost/core/
D.travis.yml1 # Copyright 2016-2019 Peter Dimov
11 - master
12 - develop
13 - /feature\/.*/
17 - BOGUS_JOB=true
22 - env: BOGUS_JOB=true
25 - os: linux
31 - g++-multilib
33 - os: linux
34 arch: arm64
[all …]
/external/aws-crt-java/codebuild/cd/
Dosx-arm64-build.sh3 set -ex
7 git submodule update --init
8 export GIT_TAG=$(git describe --tags)
10 mvn -B package -DskipTests -P mac-arm64 -Dcrt.classifier=osx-aarch_64
13 mkdir -p ../dist
15 cp -rv target/cmake-build/lib ../dist/
17 aws s3 cp --recursive --exclude "*" --include "*.dylib" ./target/cmake-build/lib s3://aws-crt-java-
18 aws s3 cp --recursive --exclude "*" --include "aws-crt*.jar" ./target s3://aws-crt-java-pipeline/${…
/external/libffi/
DREADME.md4 [![Build Status](https://travis-ci.org/libffi/libffi.svg?branch=master)](https://travis-ci.org/libf…
7 libffi-3.3 was released on November 23, 2019. Check the libffi web
24 told at run-time about the number and types of arguments used to call
51 | --------------- | ---------------- | ----------------------- |
52 | AArch64 (ARM64) | iOS | Clang |
64 | IA-64 | Linux | GCC |
78 | PowerPC 32-bit | AIX | IBM XL C |
79 | PowerPC 64-bit | AIX | IBM XL C |
82 | PowerPC | Mac OSX | GCC |
84 | PowerPC 64-bit | FreeBSD | GCC |
[all …]
/external/tensorflow/third_party/remote_config/
Dremote_platform_configure.bzl10 platform = "osx"
15 machine_type = repository_ctx.execute(["bash", "-c", "echo $MACHTYPE"]).stdout
23 elif machine_type.startswith("arm64"):
/external/angle/src/tests/test_expectations/
DGPUTestConfig.cpp3 // Use of this source code is governed by a BSD-style license that can be
34 static int32_t sSavedMajorVersion = -1; in OperatingSystemVersionNumbers()
35 static int32_t sSavedMinorVersion = -1; in OperatingSystemVersionNumbers()
37 if (sSavedMajorVersion == -1 || sSavedMinorVersion == -1) in OperatingSystemVersionNumbers()
54 // Check if the OS is a specific major and minor version of OSX
71 // Check if the OS is OSX Leopard
81 // Check if the OS is OSX Snow Leopard
91 // Check if the OS is OSX Lion
101 // Check if the OS is OSX Mountain Lion
111 // Check if the OS is OSX Mavericks
[all …]

12345