Initial commit step0

This commit is contained in:
2026-06-12 18:48:27 +02:00
commit 7093fb49a0
11 changed files with 330 additions and 0 deletions

11
step0/CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 4.0.0)
project(cjs-lite)
add_executable(app app.c)
# Set specific executable flags
target_link_options(app PRIVATE
-Wl,--no-entry
-Wl,--no-growable-memory
-Wl,--initial-memory=536870912
)