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 6565 echo "CC=clang" >> $GITHUB_ENV
6666 echo "CXX=clang++" >> $GITHUB_ENV
6767
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-
8568 - name : Checking out SourceMod
8669 uses : actions/checkout@v4
8770 with :
@@ -148,6 +131,7 @@ jobs:
148131 path : src
149132
150133 - name : Compiling ${{ github.event.repository.name }} files
134+ shell : bash
151135 working-directory : src
152136 run : |
153137 mkdir build
Original file line number Diff line number Diff line change @@ -484,7 +484,7 @@ class ExtensionConfig(object):
484484
485485 if compiler .target .platform == 'linux' :
486486 if sdk .name in ['csgo' , 'blade' ]:
487- compiler .linkflags .remove ('-static-libstdc++' )
487+ # compiler.linkflags.remove('-static-libstdc++')
488488 compiler .defines += ['_GLIBCXX_USE_CXX11_ABI=0' ]
489489
490490 for path in paths :
You can’t perform that action at this time.
0 commit comments