Skip to content

Commit 58f4b2f

Browse files
committed
fixup! Use FVP models to test AArch64 Big Endian Variants.
Multilib flags do not need to have -mbig-endian. Big endian variants can be differentiated with the target aarch64_be. if the commandline options contain aarch64 and -mbig-endian, clang convert the target into aarch64_be already so that case works in that way. If the multilib flags contain -mbig-endian, commandline options just contain target=aarch64_be does not work, looks like multiib system insist on having -mbig-endian in the commandline.
1 parent 9cdd067 commit 58f4b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1647,7 +1647,7 @@ add_library_variants_for_cpu(
16471647
add_library_variants_for_cpu(
16481648
aarch64a_be
16491649
COMPILE_FLAGS "--target=aarch64_be-unknown-none-elf -mbig-endian"
1650-
MULTILIB_FLAGS "--target=aarch64_be-unknown-none-elf -mbig-endian"
1650+
MULTILIB_FLAGS "--target=aarch64_be-unknown-none-elf"
16511651
PICOLIBC_BUILD_TYPE "release"
16521652
EXECUTOR fvp
16531653
FVP_MODEL aem-a

0 commit comments

Comments
 (0)