소스 검색

make the x32 port use the correct ld-musl-x32.path filename

previously it was wrongly using the x86_64 one, precluding having both
x32 and x86_64 libs present on the same system.
Rich Felker 11 년 전
부모
커밋
744f11897a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      arch/x32/reloc.h

+ 1 - 1
arch/x32/reloc.h

@@ -2,7 +2,7 @@
 #include <string.h>
 #include <elf.h>
 
-#define LDSO_ARCH "x86_64"
+#define LDSO_ARCH "x32"
 
 #define IS_COPY(x) ((x)==R_X86_64_COPY)
 #define IS_PLT(x) ((x)==R_X86_64_JUMP_SLOT)