From 1c4693fcd3f4e8aa167f98d82fd78aeecf0d1014 Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Fri, 8 Dec 2017 18:37:42 +0100 Subject: [PATCH] Compile JSC on Windows and Linux as well Ref. https://github.com/v8/web-tooling-benchmark/pull/29#discussion_r155831751 --- src/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build.py b/src/build.py index 57ed5c25..2d03d129 100755 --- a/src/build.py +++ b/src/build.py @@ -948,7 +948,7 @@ def Jsc(): command = ['xcrun', PREBUILT_CMAKE_BIN, '-Wno-dev', '..', '-G', 'Ninja', '-DCMAKE_BUILD_TYPE="Release"', - '-DPORT=Mac', + '-DPORT=JSCOnly', '-DENABLE_WEBASSEMBLY=ON'] command.extend(OverrideCMakeCompiler()) @@ -1427,7 +1427,7 @@ def AllBuilds(use_asm=False): # Host tools Build('llvm', LLVM), Build('v8', V8), - Build('jsc', Jsc, no_windows=True, no_linux=True), + Build('jsc', Jsc), Build('wabt', Wabt), Build('ocaml', OCaml, no_windows=True), Build('spec', Spec, no_windows=True),