-
-
Notifications
You must be signed in to change notification settings - Fork 101
build: separate lldb_include_dir and lldb_lib_dir #185
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
build: separate lldb_include_dir and lldb_lib_dir
- Separate detection of lldb headers and lldb shared libraries since the headers can be downloaded by us while the libraries cannot at the moment. On some systems we are not able to find the non-versioned liblldb dynamic library (`-llldb`) anyway, it's working fine until now because the lldb will resolve the symbols before loading the plugin, but this will have to be handled differently in the case of addons which need the symbols at build time. Also use ldd to find the correct name of the library. - Use the name `lldb_include_dir` and `lldb_lib_dir` and point them to subdirectories of the lldb installation to match the concepts in llvm-config. - Check the `$lldb_include_dir/lldb/API` for headers since some incomplete installations may not have the API headers installed. - Stop symlinking ./lldb because we will always run scripts/configure.js which can write the path to the headers in the config.gypi anyway. - Put the conditional flags in binding.gyp to target_defaults so they can be shared by the addon target later. - Add more logs in the configuration script about the result of each step. - Detect llvm-config once and use it if it's available later instead of always trying to run it in each configuration step.
- Loading branch information
commit a7972a8ce0e70102bd6780f0bc2e0f9576ad3d3d
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,15 @@ | ||
| *.dylib | ||
| *.so | ||
| *.dSYM | ||
| tools/ | ||
| out/ | ||
| lldb/ | ||
| lldb-*/ | ||
| build/ | ||
| out/ | ||
| npm-debug.log | ||
| node_modules/ | ||
| options.gypi | ||
|
|
||
| # Generated by scripts/configure.js | ||
| config.gypi | ||
| llnode.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,31 +1,23 @@ | ||
| 'use strict'; | ||
|
|
||
| const os = require('os'); | ||
| const child_process = require('child_process'); | ||
| const fs = require('fs'); | ||
|
|
||
| const cwd = process.cwd(); | ||
| const osName = os.type(); | ||
| var libExt = 'so'; | ||
|
|
||
| if (osName === 'Darwin') { | ||
| libExt = 'dylib'; | ||
| } | ||
|
|
||
| const libExt = require('os').type() === 'Darwin' ? 'dylib' : 'so'; | ||
| const llnodeLib = `plugin.${libExt}`; | ||
| const destLib = `llnode.${libExt}`; | ||
|
|
||
| let buildPath = `${cwd}/build/Release/${llnodeLib}`; | ||
|
|
||
| if (!fs.existsSync(buildPath)) { | ||
| if (!fs.existsSync(buildPath)) | ||
| buildPath = `${cwd}/build/Debug/${llnodeLib}`; | ||
| } | ||
|
|
||
| const destPath = `${cwd}/${destLib}`; | ||
|
|
||
| console.log(`Moving ${buildPath} to ${destPath}`); | ||
| fs.renameSync(buildPath, destPath); | ||
|
|
||
| console.log(`${os.EOL}llnode plugin installed, load in lldb with:`); | ||
| console.log(`\nllnode plugin installed, load in lldb with:\n`); | ||
| console.log(`(lldb) plugin load ${destPath}`); | ||
| console.log(`or copy plugin to lldb system plugin directory, see www.npmjs.org/llnode${os.EOL}`); | ||
| console.log('\nor copy plugin to lldb system plugin directory'); | ||
| console.log('see https://github.com/nodejs/llnode\n'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as off-topic.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.