summaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorAmlal <amlal@nekernel.org>2025-08-12 15:32:30 +0200
committerAmlal <amlal@nekernel.org>2025-08-12 15:32:30 +0200
commit2a36b103240c5724d2a4a8dc4820d2ceea72e56b (patch)
treeedfc68b07632aad5e8822db0be25203ae66bad29 /tests
parenta2d091a55cdc465a4f90181f2b404bdd062dbad6 (diff)
feat: ld64: Fix linker issues with start symbol fetch.
feat: tests: add linker test. Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/test_02_linker/linker_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_02_linker/linker_test.cc b/tests/test_02_linker/linker_test.cc
index 88d51de..7f220f7 100644
--- a/tests/test_02_linker/linker_test.cc
+++ b/tests/test_02_linker/linker_test.cc
@@ -19,6 +19,6 @@ TEST(LinkerTest, BasicLinkTest)
expr = std::system("asm -asm:x64 sample/sample.cc.pp.masm");
EXPECT_TRUE(expr == 0) << "Assembler did not assemble the easy asm unit.";
- expr = std::system("ld64 -fat-binary sample/sample.cc.pp.obj -start __NECTI_main -output main.exec");
+ expr = std::system("ld64 -amd64 sample/sample.cc.pp.obj -start __NECTI_main -output main.exec");
EXPECT_TRUE(expr == 0) << "Linker did not link the easy object.";
}