Created
November 30, 2024 06:35
-
-
Save nihui/91426bd047ba5542d3f2016cda84a0af to your computer and use it in GitHub Desktop.
binutils-bfd-allow-link-rvv-xtheadvector.patch
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
diff --git a/bfd/elfxx-riscv.c b/bfd/elfxx-riscv.c | |
index 45da83e6926..a2e079c9c95 100644 | |
--- a/bfd/elfxx-riscv.c | |
+++ b/bfd/elfxx-riscv.c | |
@@ -2104,13 +2104,6 @@ riscv_parse_check_conflicts (riscv_parse_subset_t *rps) | |
(_("`zfinx' is conflict with the `f/d/q/zfh/zfhmin' extension")); | |
no_conflict = false; | |
} | |
- if (riscv_lookup_subset (rps->subset_list, "xtheadvector", &subset) | |
- && riscv_lookup_subset (rps->subset_list, "v", &subset)) | |
- { | |
- rps->error_handler | |
- (_("`xtheadvector' is conflict with the `v' extension")); | |
- no_conflict = false; | |
- } | |
bool support_zve = false; | |
bool support_zvl = false; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment