Skip to content

Commit

Permalink
Merge pull request #344 from Millak/powerpc64le-target-fix
Browse files Browse the repository at this point in the history
Fix target-name for powerpc64le.
  • Loading branch information
thepowersgang authored Dec 9, 2024
2 parents 1827564 + 210e2a5 commit df17edc
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 df17edc

Please sign in to comment.