After running make bootstrap I received an error from the linker telling me that some Aarch64 symbols were not defined.
I found out that bootstrap/build.zig didn't have the "aarch64" flag set.
I added it and it worked.
bootstrap/build.zig
8- const llvm_link_flags = b.run(&.{
9- llvm_config,
10- // "--link-static",
11- "--ldflags",
12- "--libs",
13- "--system-libs",
14- "core",
15- "target",
16- "native",
17- "x86",
18: "aarch64" // <- this line
19- });
I'm not creating a pull request since It could be a problem of my machine (debian 12)
After running
make bootstrapI received an error from the linker telling me that some Aarch64 symbols were not defined.I found out that
bootstrap/build.zigdidn't have the "aarch64" flag set.I added it and it worked.
I'm not creating a pull request since It could be a problem of my machine (debian 12)