OLD | NEW |
---|---|
1 # Copyright 2015 the V8 project authors. All rights reserved. | 1 # Copyright 2015 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 18 matching lines...) Expand all Loading... | |
29 # The snapshot needs to be compiled for the host, but compiled with | 29 # The snapshot needs to be compiled for the host, but compiled with |
30 # a toolchain that matches the bit-width of the target. | 30 # a toolchain that matches the bit-width of the target. |
31 v8_snapshot_toolchain = "" | 31 v8_snapshot_toolchain = "" |
32 } | 32 } |
33 | 33 |
34 # TODO(GYP): For now we only support 32-bit little-endian target builds from an | 34 # TODO(GYP): For now we only support 32-bit little-endian target builds from an |
35 # x64 Linux host. Eventually we need to support all of the host/target | 35 # x64 Linux host. Eventually we need to support all of the host/target |
36 # configurations v8 runs on. | 36 # configurations v8 runs on. |
37 if (v8_snapshot_toolchain == "") { | 37 if (v8_snapshot_toolchain == "") { |
38 if (host_cpu == "x64" && host_os == "linux") { | 38 if (host_cpu == "x64" && host_os == "linux") { |
39 if (target_cpu == "arm" || target_cpu == "mipsel" || target_cpu == "x86") { | 39 if (current_cpu == "arm" || current_cpu == "mipsel" || |
40 if (target_os == "android" || is_clang) { | 40 current_cpu == "x86") { |
41 v8_snapshot_toolchain = "//build/toolchain/linux:clang_x86" | 41 _snapshot_cpu = "x86" |
42 } else if (target_os == "chromeos") { | 42 } else { |
43 # TODO(dpranke): crbug.com/608596: Remove this clause once the | 43 assert(current_cpu == "arm64" || current_cpu == "x64" || |
44 # CrOS ebuilds are setting v8_snapshot_toolchain directly and | 44 current_cpu == "mipsel64", |
45 # we've cleaned up the sysroot settings in //build. | 45 "Need environment for this arch: $current_cpu") |
46 v8_snapshot_toolchain = "//build/toolchain/linux:clang_x86" | 46 _snapshot_cpu = "x64" |
47 } else { | 47 } |
48 v8_snapshot_toolchain = "//build/toolchain/linux:x86" | |
49 } | |
50 | 48 |
51 } else if (target_cpu == "x64" || target_cpu == "arm64" || | 49 if (v8_current_cpu != _snapshot_cpu) { |
52 target_cpu == "mips64el") { | 50 _cpus = "${_snapshot_cpu}_v8_${v8_current_cpu}" |
53 if (target_os == "android" || is_clang) { | |
54 v8_snapshot_toolchain = "//build/toolchain/linux:clang_x64" | |
55 } else if (target_os == "chromeos") { | |
56 # TODO(dpranke): crbug.com/608596: Remove this clause once the | |
57 # CrOS ebuilds are setting v8_snapshot_toolchain directly and | |
58 # we've cleaned up the sysroot settings in //build. | |
59 v8_snapshot_toolchain = "//build/toolchain/linux:clang_x64" | |
60 } else { | |
61 v8_snapshot_toolchain = "//build/toolchain/linux:x64" | |
62 } | |
63 } else { | 51 } else { |
64 assert(false, "Need environment for this arch: $target_cpu") | 52 _cpus = _snapshot_cpu |
65 } | 53 } |
66 } else if (host_os == "mac" && target_os == "win") { | 54 |
67 v8_snapshot_toolchain = "//build/toolchain/mac:clang_$target_cpu" | 55 if ((host_os == "linux" && current_os == "android") || is_clang) { |
Michael Achenbach
2016/07/07 07:40:23
Why did target_os change to current_os? Where's th
Dirk Pranke
2016/07/07 17:19:16
Theoretically, if this file got loaded from some t
| |
56 v8_snapshot_toolchain = "//build/toolchain/linux:clang_${_cpus}" | |
57 } else { | |
58 v8_snapshot_toolchain = "//build/toolchain/linux:${_cpus}" | |
59 } | |
60 } else if (host_os == "mac" && current_os == "win") { | |
Michael Achenbach
2016/07/07 07:40:23
Do we really use this build configuration? Compili
Dirk Pranke
2016/07/07 17:19:16
thakis@ has been working off-and-on on this w/ cla
Nico
2016/07/07 17:28:06
Yes, see https://codereview.chromium.org/118363300
| |
61 assert(v8_current_cpu == current_cpu, | |
62 "v8 target must match the regular target on this platform") | |
63 v8_snapshot_toolchain = "//build/toolchain/mac:clang_$current_cpu" | |
68 } else { | 64 } else { |
65 assert(v8_current_cpu == current_cpu, | |
66 "v8 target must match the regular target on this platform") | |
69 v8_snapshot_toolchain = default_toolchain | 67 v8_snapshot_toolchain = default_toolchain |
70 } | 68 } |
71 } | 69 } |
72 | |
73 # TODO(dpranke): snapshot_toolchain is provided for backwards compatibility | |
74 # and should be removed once all callers are updated to refer to | |
75 # v8_snapshot_toolchain directly. | |
76 snapshot_toolchain = v8_snapshot_toolchain | |
OLD | NEW |