• Home
  • Raw
  • Download

Lines Matching +full:0 +full:- +full:x86_64 +full:- +full:linux

7     print("- Patches List -")
8 …print("[1] [deps/v8/src/trap-handler/trap-handler.h] related to https://github.com/nodejs/node/iss…
9 if platform.system() == "Linux":
10 …os.system('patch -f ./deps/v8/src/trap-handler/trap-handler.h < ./android-patches/trap-handler.h.p…
11 print("\033[92mInfo: \033[0m" + "Tried to patch.")
14 print("android-configure is not supported on Windows yet.")
19 sys.exit(0)
22 …print("Usage: ./android-configure [patch] <path to the Android NDK> <Android SDK version> <target …
26 print("\033[91mError: \033[0m" + "Invalid path to the Android NDK")
30 print("\033[91mError: \033[0m" + "Android SDK version must be at least 24 (Android 7.0)")
39 TOOLCHAIN_PREFIX = "armv7a-linux-androideabi"
42 TOOLCHAIN_PREFIX = "aarch64-linux-android"
46 TOOLCHAIN_PREFIX = "i686-linux-android"
47 elif arch == "x86_64":
49 TOOLCHAIN_PREFIX = "x86_64-linux-android"
52 …print("\033[91mError: \033[0m" + "Invalid target architecture, must be one of: arm, arm64, aarch64…
55 print("\033[92mInfo: \033[0m" + "Configuring for " + DEST_CPU + "...")
59 toolchain_path = android_ndk_path + "/toolchains/llvm/prebuilt/darwin-x86_64"
61 elif platform.system() == "Linux":
62 host_os = "linux"
63 toolchain_path = android_ndk_path + "/toolchains/llvm/prebuilt/linux-x86_64"
66 os.environ['CC'] = toolchain_path + "/bin/" + TOOLCHAIN_PREFIX + android_sdk_version + "-" + "clan…
67 os.environ['CXX'] = toolchain_path + "/bin/" + TOOLCHAIN_PREFIX + android_sdk_version + "-" + "clan…
76 …os.system("./configure --dest-cpu=" + DEST_CPU + " --dest-os=android --openssl-no-asm --cross-comp…