-
Notifications
You must be signed in to change notification settings - Fork 43
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
Changes for esp-idf-sys
cmake build
#14
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
f3bd5c5
cmd* macros: Add ability to specify argument collection with `@<expre…
N3xed 9eaf344
Add fs utilities
N3xed 294667f
Allow errors to be turned into cargo warnings
N3xed 33fd7f1
Add git utilities
N3xed bf2f339
Add initial cmake tools
N3xed 7193c52
Add cmake-file-API cache object
N3xed 9873d03
Refactor `bindgen`, add `from_cmake` contructor
N3xed a172947
cmake: Add toolchains object
N3xed 7e3527b
Add type alias `NativeCommandArgs`
N3xed 19a8e7a
Make `LinkArgsBuilder` methods usable
N3xed a300768
Construct `LinkArgsBuilder`, `CInclArgs` from cmake build info
N3xed 956500f
Add `CfgArgs::try_from_json`
N3xed 03622d9
Don't detect bindgen linker from cache
N3xed 1ba0d42
Fix clippy warnings
N3xed 85fd2f5
Fix `git::Repository::apply`
N3xed 2f2b275
Improve cmake-file-api error messages
N3xed 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
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -28,3 +28,5 @@ bindgen = "0.57" | |
xmas-elf = "0.8" | ||
bitflags = "1.3" | ||
shlex = "1.0" | ||
remove_dir_all = "0.7" | ||
cmake = "0.1" |
This file contains 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 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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've not tested this yet. But I guess this would only cause problems if
SconsVariables::incflags
andclangargs
contained unescaped doube-quotes ("
) which would be removed byNativeCommandArgs
on windows. And on unix unescaped'
,"
or\
.