Skip to content

Commit

Permalink
fix: Remove old compiler gyp settings
Browse files Browse the repository at this point in the history
- VS2015 isn't supported anymore
- CPP11 flags cause issues on modern tooling
  • Loading branch information
nschonni authored and xzyfer committed May 8, 2021
1 parent 3d7b9d0 commit 8ab02da
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions binding.gyp
Expand Up @@ -28,7 +28,6 @@
}
},
'xcode_settings': {
'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
'CLANG_CXX_LIBRARY': 'libc++',
'OTHER_LDFLAGS': [],
'GCC_ENABLE_CPP_EXCEPTIONS': 'NO',
Expand Down Expand Up @@ -68,21 +67,6 @@
'<(libsass_library)',
],
}
}],
['OS=="win" and MSVS_VERSION == "2015"', {
'msvs_settings': {
'VCCLCompilerTool': {
'AdditionalOptions': [
# disable Thread-Safe "Magic" for local static variables
'/Zc:threadSafeInit-',
],
},
},
}],
['OS!="win"', {
'cflags_cc+': [
'-std=c++0x'
]
}]
]
}
Expand Down

0 comments on commit 8ab02da

Please sign in to comment.