Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 100
build: merge gyp_llnode into scripts/configure.js#182
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,72 @@ | ||
| { | ||
| "targets": [{ "target_name": "none", "type": "none" }] | ||
| "includes": [ | ||
| "llnode.gypi", | ||
| "config.gypi" | ||
| ], | ||
| "variables": { | ||
| # gyp does not appear to let you test for undefined variables, so define | ||
| # lldb_lib_dir as empty so we can test it later. | ||
| "lldb_lib_dir%": "" | ||
| }, | ||
| "targets": [{ | ||
| "target_name": "plugin", | ||
| "type": "shared_library", | ||
| "product_prefix": "", | ||
| "include_dirs": [ | ||
| ".", | ||
| "<(lldb_header_dir)/include", | ||
| ], | ||
| "sources": [ | ||
| "src/llnode.cc", | ||
| "src/llv8.cc", | ||
| "src/llv8-constants.cc", | ||
| "src/llscan.cc", | ||
| ], | ||
| "cflags" : [ "-std=c++11" ], | ||
| "conditions": [ | ||
| [ "OS == 'mac'", { | ||
| # Necessary for node v4.x | ||
| "xcode_settings": { | ||
| "OTHER_CPLUSPLUSFLAGS" : [ "-std=c++11", "-stdlib=libc++" ], | ||
| "OTHER_LDFLAGS": [ "-stdlib=libc++" ], | ||
| }, | ||
| "conditions": [ | ||
| [ "lldb_lib_dir == ''", { | ||
| "variables": { | ||
| "mac_shared_frameworks": "/Applications/Xcode.app/Contents/SharedFrameworks", | ||
| }, | ||
| "xcode_settings": { | ||
| "OTHER_LDFLAGS": [ | ||
| "-F<(mac_shared_frameworks)", | ||
| "-Wl,-rpath,<(mac_shared_frameworks)", | ||
| "-framework LLDB", | ||
| ], | ||
| }, | ||
| }, | ||
| # lldb_lib_dir != "" | ||
| { | ||
| "xcode_settings": { | ||
| "OTHER_LDFLAGS": [ | ||
| "-Wl,-rpath,<(lldb_lib_dir)/lib", | ||
| "-L<(lldb_lib_dir)/lib", | ||
| "-l<(lldb_lib)", | ||
| ], | ||
| }, | ||
| }], | ||
| ], | ||
| }], | ||
| ] | ||
| }, | ||
| { | ||
| "target_name": "install", | ||
| "type":"none", | ||
| "dependencies" : [ "plugin" ] | ||
| }], | ||
| } |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as off-topic.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as off-topic.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.