We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ad41b0 commit 0456c39Copy full SHA for 0456c39
.github/workflows/xtracfg.yml
@@ -144,6 +144,7 @@ jobs:
144
defaults:
145
run:
146
working-directory: ./xtracfg
147
+ shell: bash
148
steps:
149
- uses: actions/checkout@v4
150
- uses: actions/setup-go@v5
libxtracfg/js/xtracfg-native-binding/binding.gyp
@@ -19,12 +19,16 @@
19
'VCCLCompilerTool': {
20
'RuntimeLibrary': 2, # /MD
21
'ExceptionHandling': 1,
22
+ 'AdditionalOptions': [
23
+ '/MD',
24
+ '/EHsc',
25
+ ],
26
},
27
'VCLinkerTool': {
28
'IgnoreDefaultLibraryNames': [ 'LIBCMT' ],
29
'AdditionalOptions': [
- '/WHOLEARCHIVE:<(local_prefix)/../c/build/libxtracfg.lib',
- ],
30
+ '/WHOLEARCHIVE:<(local_prefix)/../c/build/libxtracfg.lib',
31
32
33
34
'conditions': [
0 commit comments