mirror of
https://github.com/justinian/jsix.git
synced 2025-12-09 16:04:32 -08:00
Split out build definition YAML files to allow different options based on config, target, kind of module, and target/kind combination.
28 lines
462 B
YAML
28 lines
462 B
YAML
---
|
|
ld: clang++
|
|
|
|
ccflags: [
|
|
"-nostdlib",
|
|
"-nodefaultlibs",
|
|
"-fno-builtin",
|
|
|
|
"-I${source_root}/external",
|
|
"--target=x86_64-unknown-windows",
|
|
"-ffreestanding",
|
|
"-mno-red-zone",
|
|
"-fshort-wchar",
|
|
"-fno-omit-frame-pointer",
|
|
"-ggdb",
|
|
"-g3" ]
|
|
|
|
cxxflags: [ "-fno-exceptions", "-fno-rtti" ]
|
|
|
|
ldflags: [
|
|
"--target=x86_64-unknown-windows",
|
|
"-nostdlib",
|
|
"-Wl,-entry:efi_main",
|
|
"-Wl,-subsystem:efi_application",
|
|
"-fuse-ld=lld-link",
|
|
"-g" ]
|
|
|