Skip to content

Commit

Permalink
use_static_cpp for everything except windows
Browse files Browse the repository at this point in the history
  • Loading branch information
RevoluPowered committed Nov 19, 2024
1 parent 931625f commit 0b3fc72
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/godot-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ runs:
export BUILD_NAME="gh"
fi
scons platform=${{ inputs.platform }} target=${{ inputs.target }} tests=${{ inputs.tests }} ${{ env.SCONSFLAGS }} use_static_cpp=yes
scons platform=${{ inputs.platform }} target=${{ inputs.target }} tests=${{ inputs.tests }} ${{ env.SCONSFLAGS }}
ls -l bin/
10 changes: 5 additions & 5 deletions .github/workflows/engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
target: editor
tests: false
strip: true
sconsflags: debug_symbols=no optimize=speed production=yes
sconsflags: debug_symbols=no optimize=speed production=yes use_static_cpp=yes
dist-app: "macos_tools.app"
packaged-app: "MirrorGodotEditorMac.app"
bin-name: "godot.macos.editor.universal"
Expand All @@ -170,7 +170,7 @@ jobs:
target: template_debug
tests: false
strip: true
sconsflags: debug_symbols=no optimize=speed
sconsflags: debug_symbols=no optimize=speed use_static_cpp=yes
dist-app: "macos_template.app"
packaged-app: "macos_template.app"
bin-name: "godot.macos.template_debug.universal"
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
- name: Linux Editor
cache-name: linux-editor
target: editor
sconsflags: arch=x86_64 debug_symbols=yes optimize=speed_trace
sconsflags: arch=x86_64 debug_symbols=yes optimize=speed_trace use_static_cpp=yes
strip: false
bin: "./bin/godot.linuxbsd.editor.x86_64"
artifact-name: "MirrorGodotEditorLinux.x86_64"
Expand All @@ -304,7 +304,7 @@ jobs:
cache-name: linux-template
target: template_debug
strip: true
sconsflags: arch=x86_64 debug_symbols=no optimize=speed
sconsflags: arch=x86_64 debug_symbols=no optimize=speed use_static_cpp=yes
bin: "./bin/godot.linuxbsd.template_debug.x86_64"
artifact-name: "linux_release.x86_64"
artifact: true
Expand Down Expand Up @@ -407,7 +407,7 @@ jobs:
cache-name: android-template
target: template_debug
strip: true
sconsflags: debug_symbols=no optimize=speed
sconsflags: debug_symbols=no optimize=speed use_static_cpp=yes
bin: "./bin/godot.linuxbsd.template_debug.x86_64"
artifact-name: "android-template"
artifact: true
Expand Down

0 comments on commit 0b3fc72

Please sign in to comment.