-
Notifications
You must be signed in to change notification settings - Fork 760
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SYCL][RTC] Clarify and test handling of include paths (#17307)
Multiple changes related to the handling of `#include`'s in RTC: - Fix a bug in how the in-memory pipeline rendered joined arguments - Add "current working directory" and "directories specified via `-I` in `build_options`" to the locations that extension will look for header files, and clarifiy search order, in the specification. This change is meant to establish clang's usual include behavior. - Add an extensive E2E test for include handling - Check if filename is not present in `include_files::add` to match specification - Add missing constructors and `add` method to `include_files` and `build_properties` to match specification --------- Signed-off-by: Julian Oppermann <[email protected]> Co-authored-by: John Pennycook <[email protected]>
- Loading branch information
Showing
9 changed files
with
319 additions
and
36 deletions.
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
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
#define DEFINE_1 fsA |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
#define DEFINE_2 fsB |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
#define DEFINE_1 fsC |
Oops, something went wrong.