diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2024-08-01 13:05:21 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2024-08-01 13:05:21 +0200 |
commit | e65807b86f00adde9e70ec0a11edfbbf356131d3 (patch) | |
tree | a73208a1a0336251e215d6f4dddf4f9e62a086a4 | |
parent | 168551fbd44a3d8c64cd362511964566cf74091c (diff) | |
download | bxgen-e65807b86f00adde9e70ec0a11edfbbf356131d3.zip |
Precalculate GOT segment size
-rwxr-xr-x | bxgen.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4203,8 +4203,8 @@ b8 link_with_libc(void) { // Add dependencies l_static(u, "c"); l_object(u, "crt1"); - l_object(u, "crti"); - l_object(u, "crtn"); + // l_object(u, "crti"); + // l_object(u, "crtn"); // Write the compilation unit into an executable file. u_elf_x86_64(u, "test_foo"); |