File tree Expand file tree Collapse file tree 2 files changed +2
-18
lines changed Expand file tree Collapse file tree 2 files changed +2
-18
lines changed Original file line number Diff line number Diff line change 65
65
echo "CC=clang" >> $GITHUB_ENV
66
66
echo "CXX=clang++" >> $GITHUB_ENV
67
67
68
- - name : Add msbuild to PATH (Windows)
69
- if : startsWith(runner.os, 'Windows')
70
- uses : microsoft/setup-msbuild@v2
71
-
72
- - name : Install (Windows)
73
- if : startsWith(runner.os, 'Windows')
74
- shell : cmd
75
- run : |
76
- :: See https://github.com/microsoft/vswhere/wiki/Find-VC
77
- for /f "usebackq delims=*" %%i in (`vswhere -latest -property installationPath`) do (
78
- call "%%i"\Common7\Tools\vsdevcmd.bat -arch=x86 -host_arch=x64
79
- )
80
- :: Loop over all environment variables and make them global.
81
- for /f "delims== tokens=1,2" %%a in ('set') do (
82
- echo>>"%GITHUB_ENV%" %%a=%%b
83
- )
84
-
85
68
- name : Checking out SourceMod
86
69
uses : actions/checkout@v4
87
70
with :
@@ -148,6 +131,7 @@ jobs:
148
131
path : src
149
132
150
133
- name : Compiling ${{ github.event.repository.name }} files
134
+ shell : bash
151
135
working-directory : src
152
136
run : |
153
137
mkdir build
Original file line number Diff line number Diff line change @@ -484,7 +484,7 @@ class ExtensionConfig(object):
484
484
485
485
if compiler .target .platform == 'linux' :
486
486
if sdk .name in ['csgo' , 'blade' ]:
487
- compiler .linkflags .remove ('-static-libstdc++' )
487
+ # compiler.linkflags.remove('-static-libstdc++')
488
488
compiler .defines += ['_GLIBCXX_USE_CXX11_ABI=0' ]
489
489
490
490
for path in paths :
You can’t perform that action at this time.
0 commit comments