-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[Driver] Add ExclusiveGroup feature to multilib.yaml. #69447
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 all commits
Commits
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 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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# UNSUPPORTED: system-windows | ||
|
||
# RUN: rm -rf %t | ||
|
||
# RUN: mkdir -p %t/baremetal_multilib/bin | ||
# RUN: ln -s %clang %t/baremetal_multilib/bin/clang | ||
|
||
# RUN: mkdir -p %t/baremetal_multilib/lib/clang-runtimes | ||
# RUN: ln -s %s %t/baremetal_multilib/lib/clang-runtimes/multilib.yaml | ||
|
||
# RUN: %t/baremetal_multilib/bin/clang -no-canonical-prefixes -x c++ %s -### -o %t.out --target=thumbv7em-none-unknown-eabi --sysroot= 2>%t.err | ||
|
||
# RUN: FileCheck -DSYSROOT=%t/baremetal_multilib %s < %t.err --check-prefix=POS | ||
# RUN: FileCheck -DSYSROOT=%t/baremetal_multilib %s < %t.err --check-prefix=NEG | ||
|
||
# Expected results: | ||
# | ||
# Due to the Mappings section, all six of these library directories should | ||
# match the command-line flag --target=thumbv7em-none-unknown-eabi. | ||
# | ||
# The two "non_exclusive" directories, which don't have an ExclusiveGroup at | ||
# all, should both be selected. So should the two "own_group", each of which | ||
# specifies a different value of ExclusiveGroup. But the three "exclusive", | ||
# which have the _same_ ExclusiveGroup value, should not: the third one wins. | ||
# So we expect five of these seven directories to show up in the clang-cc1 | ||
# command line, but not testdir1_exclusive or testdir2_exclusive. | ||
|
||
# POS-DAG: "-internal-isystem" "[[SYSROOT]]/bin/../lib/clang-runtimes/testdir1_non_exclusive/include/c++/v1" | ||
# POS-DAG: "-internal-isystem" "[[SYSROOT]]/bin/../lib/clang-runtimes/testdir2_non_exclusive/include/c++/v1" | ||
# POS-DAG: "-internal-isystem" "[[SYSROOT]]/bin/../lib/clang-runtimes/testdir3_exclusive/include/c++/v1" | ||
# POS-DAG: "-internal-isystem" "[[SYSROOT]]/bin/../lib/clang-runtimes/testdir1_own_group/include/c++/v1" | ||
# POS-DAG: "-internal-isystem" "[[SYSROOT]]/bin/../lib/clang-runtimes/testdir2_own_group/include/c++/v1" | ||
|
||
# NEG-NOT: "-internal-isystem" "[[SYSROOT]]/bin/../lib/clang-runtimes/testdir1_exclusive/include/c++/v1" | ||
# NEG-NOT: "-internal-isystem" "[[SYSROOT]]/bin/../lib/clang-runtimes/testdir2_exclusive/include/c++/v1" | ||
|
||
--- | ||
MultilibVersion: 1.0 | ||
|
||
Groups: | ||
- Name: actually_exclude_something | ||
Type: Exclusive | ||
|
||
- Name: foo | ||
Type: Exclusive | ||
|
||
- Name: bar | ||
Type: Exclusive | ||
|
||
Variants: | ||
- Dir: testdir1_non_exclusive | ||
Flags: [--target=thumbv7m-none-unknown-eabi] | ||
|
||
- Dir: testdir2_non_exclusive | ||
Flags: [--target=thumbv7em-none-unknown-eabi] | ||
|
||
- Dir: testdir1_exclusive | ||
Flags: [--target=thumbv7m-none-unknown-eabi] | ||
Group: actually_exclude_something | ||
|
||
- Dir: testdir2_exclusive | ||
Flags: [--target=thumbv7em-none-unknown-eabi] | ||
Group: actually_exclude_something | ||
|
||
- Dir: testdir3_exclusive | ||
Flags: [--target=thumbv7em-none-unknown-eabi] | ||
Group: actually_exclude_something | ||
|
||
- Dir: testdir1_own_group | ||
Flags: [--target=thumbv7m-none-unknown-eabi] | ||
Group: foo | ||
|
||
- Dir: testdir2_own_group | ||
Flags: [--target=thumbv7em-none-unknown-eabi] | ||
Group: bar | ||
|
||
Mappings: | ||
- Match: --target=thumbv7em-none-unknown-eabi | ||
Flags: [--target=thumbv7m-none-unknown-eabi] |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# UNSUPPORTED: system-windows | ||
|
||
# RUN: rm -rf %t | ||
|
||
# RUN: mkdir -p %t/baremetal_multilib/bin | ||
# RUN: ln -s %clang %t/baremetal_multilib/bin/clang | ||
|
||
# RUN: mkdir -p %t/baremetal_multilib/lib/clang-runtimes | ||
# RUN: ln -s %s %t/baremetal_multilib/lib/clang-runtimes/multilib.yaml | ||
|
||
# RUN: %t/baremetal_multilib/bin/clang -no-canonical-prefixes -x c++ %s -### -o %t.out --target=thumbv7em-none-unknown-eabi --sysroot= 2>%t.err | ||
# RUN: FileCheck %s < %t.err | ||
|
||
--- | ||
MultilibVersion: 1.0 | ||
|
||
Groups: | ||
- Name: group1 | ||
Type: Nonsense | ||
|
||
Variants: | ||
- Dir: testdir1 | ||
Flags: [--target=thumbv7m-none-unknown-eabi] | ||
Group: nonexistent_group_name | ||
|
||
# CHECK: error: unknown enumerated scalar | ||
# CHECK: error: multilib "testdir1" specifies undefined group name "nonexistent_group_name" |
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.
Uh oh!
There was an error while loading. Please reload this page.