We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a39171a commit b1ef651Copy full SHA for b1ef651
.github/workflows/linux.yml
@@ -63,8 +63,6 @@ jobs:
63
needs: build-v8
64
runs-on: ${{ matrix.os }}
65
env:
66
- CC: clang
67
- CXX: clang++
68
DIST_NAME: stpyv8-linux-py${{ matrix.python-version }}
69
STPYV8_BOOST_PYTHON: boost_python${{ matrix.python-version }}
70
strategy:
settings.py
@@ -48,6 +48,11 @@
48
"v8_use_external_startup_data": "false",
49
}
50
51
+if platform.system() in ("Linux", ):
52
+ gn_args["is_clang"] = "false"
53
+ gn_args["use_lld"] = "false"
54
+ gn_args["use_gold"] = "false"
55
+
56
57
source_files = [
58
"Exception.cpp",
0 commit comments