mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 08:24:32 -08:00
I was sick of `configs` colliding with `configure`, and these are (mostly) static asset files anyway, they should live under assets/.
31 lines
530 B
YAML
31 lines
530 B
YAML
---
|
|
extends: base
|
|
|
|
variables:
|
|
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" ]
|
|
|