Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install script updates and compile fixes for Linux system without Mono #370

Merged
merged 3 commits into from
Dec 22, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding C++ 11 CFLAG to binding.gyp
  • Loading branch information
lstratman committed Dec 20, 2015
commit 17df1fea41206e9cf4af43e88ac33429a65aa293
4 changes: 2 additions & 2 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"<!(node -e \"require('nan')\")"
],
'cflags+': [
'-DHAVE_CORECLR'
'-DHAVE_CORECLR -std=c++11'
],
'xcode_settings': {
'OTHER_CFLAGS': [
Expand Down Expand Up @@ -135,7 +135,7 @@
"<!(node -e \"require('nan')\")"
],
'cflags+': [
'-DHAVE_NATIVECLR'
'-DHAVE_NATIVECLR -std=c++11'
],
'xcode_settings': {
'OTHER_CFLAGS': [
Expand Down