Skip to content

Commit

Permalink
Fix target-name for powerpc64le.
Browse files Browse the repository at this point in the history
* tools/common/target_detect.h: Fix typo in powerpc64le-* triplets.
  • Loading branch information
Millak committed Dec 9, 2024
1 parent 1827564 commit 210e2a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/common/target_detect.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
# endif
# elif defined(__powerpc64__) && defined(__LITTLE_ENDIAN__)
# if defined(__USE_GNU)
# define DEFAULT_TARGET_NAME "powerpcle64-unknown-linux-gnu"
# define DEFAULT_TARGET_NAME "powerpc64le-unknown-linux-gnu"
# else
# define DEFAULT_TARGET_NAME "powerpcle64-unknown-linux-musl"
# define DEFAULT_TARGET_NAME "powerpc64le-unknown-linux-musl"
# endif
# elif defined(__riscv) && __riscv_xlen == 64
# if defined(__USE_GNU)
Expand Down

0 comments on commit 210e2a5

Please sign in to comment.