-
Notifications
You must be signed in to change notification settings - Fork 255
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
Correct include dir for libslang #5539
Conversation
fa03b14
to
4d67630
Compare
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.
Looks good to me
Can you provide more context on why this PR is needed? |
ah sure, that was in the commit message but didn't make it into the PR desc: This stops adding the repo root to the include path for anything linking Somebody already hit this in fact: #5481 (comment) |
(ci failure is simple, I can get to that and it reflects something wrong in our build system not falcor's usage of it) |
This stops adding the repo root to the include path for anything linking with slang. This enabled a bunch of convenient includes, but might lead to confusing behavior for anyone including slang. Not to mention differences including it from an install vs source.
4d67630
to
08c0018
Compare
technically a breaking change, but anyone using the old behaviour ought to change includes from
<include/slang.h>
to just<slang.h>