mirror of
https://github.com/justinian/jsix.git
synced 2025-12-09 16:04:32 -08:00
Sorta. crt0 is a separate module as far as bonnibel is concerned, but it's still part of the libc module file.
15 lines
222 B
YAML
15 lines
222 B
YAML
---
|
|
|
|
ccflags: [
|
|
"-fpie"
|
|
]
|
|
|
|
ldflags: [
|
|
"-pie",
|
|
"--dynamic-linker", "/jsix/lib/ld.so",
|
|
"--push-state", "--as-needed", "-Bstatic", "-lc++", "-lc++abi", "-lunwind", "--pop-state",
|
|
]
|
|
|
|
libs: [
|
|
"${target_dir}/crt0.o",
|
|
] |