mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
Add prebuilt/win/v8_debug.lib (#1249)
The windows debug build was broken due to libc link errors.
This commit is contained in:
parent
1ac2934604
commit
cc126528f0
4 changed files with 17 additions and 4 deletions
4
.gn
4
.gn
|
@ -30,6 +30,10 @@ default_args = {
|
|||
# for now. See http://clang.llvm.org/docs/ControlFlowIntegrity.html
|
||||
is_cfi = false
|
||||
|
||||
# Disabled due to CRT linking problems in Windows when using prebuilt V8.
|
||||
# Works in other configurations.
|
||||
is_component_build = false
|
||||
|
||||
symbol_level = 1
|
||||
treat_warnings_as_errors = true
|
||||
rust_treat_warnings_as_errors = true
|
||||
|
|
|
@ -54,7 +54,11 @@ v8_static_library("libdeno") {
|
|||
} else if (is_linux) {
|
||||
libs = [ "//prebuilt/linux64/libv8.a" ]
|
||||
} else if (is_win) {
|
||||
libs = [ "//prebuilt/win/v8.lib" ]
|
||||
if (is_debug) {
|
||||
libs = [ "//prebuilt/win/v8_debug.lib" ]
|
||||
} else {
|
||||
libs = [ "//prebuilt/win/v8.lib" ]
|
||||
}
|
||||
} else {
|
||||
assert(false, "We don't have prebuilt binaries for this platform yet.")
|
||||
}
|
||||
|
|
1
prebuilt/win/v8_debug.lib.sha1
Normal file
1
prebuilt/win/v8_debug.lib.sha1
Normal file
|
@ -0,0 +1 @@
|
|||
e080ce76661b4d90f6e7879e58273d64344a9680
|
|
@ -5,12 +5,16 @@ from third_party import tp, google_env
|
|||
|
||||
def download_v8_prebuilt():
|
||||
if sys.platform == 'win32':
|
||||
sha1_file = "prebuilt/win/v8.lib.sha1"
|
||||
download_prebuilt("prebuilt/win/v8.lib.sha1")
|
||||
# TODO Ideally we wouldn't have to download both builds of V8.
|
||||
download_prebuilt("prebuilt/win/v8_debug.lib.sha1")
|
||||
elif sys.platform.startswith('linux'):
|
||||
sha1_file = "prebuilt/linux64/libv8.a.sha1"
|
||||
download_prebuilt("prebuilt/linux64/libv8.a.sha1")
|
||||
elif sys.platform == 'darwin':
|
||||
sha1_file = "prebuilt/mac/libv8.a.sha1"
|
||||
download_prebuilt("prebuilt/mac/libv8.a.sha1")
|
||||
|
||||
|
||||
def download_prebuilt(sha1_file):
|
||||
run([
|
||||
"python",
|
||||
tp('depot_tools/download_from_google_storage.py'),
|
||||
|
|
Loading…
Reference in a new issue