remove the symbol-table walking

it wasn't feasible without knowledge of the size which I couldn't find without reading the elf file. Moreover, it wasn't really required and was halting progress
This commit is contained in:
2025-03-23 01:39:34 +02:00
parent 36ca3a2155
commit 564d2490e5
4 changed files with 13 additions and 121 deletions

View File

@@ -1,6 +1,11 @@
project(Minimal)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_BUILD_TYPE "Debug")
add_compile_options(-g -ffunction-sections -fdata-sections)
add_executable(minimal
minimal.cpp
)