Skip to content

Commit 7a8dedf

Browse files
committed
remove this flag?
1 parent 09aadfb commit 7a8dedf

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/builds.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,9 @@ jobs:
7474
env:
7575
SCONS_CACHE: ${{ github.workspace }}/.scons-cache/
7676
run: |
77-
sudo apt update
78-
sudo apt install --reinstall g++
7977
sudo apt-get install tree
78+
g++ --version
8079
pwd
81-
tree /usr/include/c++
8280
scons target=${{ matrix.target-type }} platform=${{ matrix.target.platform }} arch=${{ matrix.target.arch }} precision=${{ matrix.float-precision }}
8381
8482
# Sign the binary (macOS only)

SConstruct

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ filepath = ""
5555
if env["platform"] == "windows":
5656
env.Append(LIBPATH=["ultralight/lib/"])
5757
elif env["platform"] == "linux":
58+
env['CXXFLAGS'].remove('-fno-exceptions')
5859
print("Compiler:", env["CXX"], f"v{env["CXXVERSION"]} -", env["CXXFLAGS"])
5960
env.Append(LIBPATH=["ultralight/bin/linux/"])
6061
elif env["platform"] == "macos" or env["platform"] == "ios":

0 commit comments

Comments
 (0)