Skip to content

Commit

Permalink
For aarch64, remove --hash-style=sysv
Browse files Browse the repository at this point in the history
  • Loading branch information
MyNameIsTrez committed Sep 13, 2024
1 parent 069714e commit ea9cb58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ static void regenerate_expected_dll(
#ifdef __x86_64__
run((char *[]){"ld", nasm_o_path, "-o", expected_dll_path, "-shared", "--hash-style=sysv", NULL});
#elif __aarch64__
run((char *[]){"ld", nasm_o_path, "-o", expected_dll_path, "--hash-style=sysv", NULL});
run((char *[]){"ld", nasm_o_path, "-o", expected_dll_path, NULL});
#else
#error Unsupported or unrecognized architecture
#endif
Expand Down

0 comments on commit ea9cb58

Please sign in to comment.