mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
19 lines
339 B
Django/Jinja
19 lines
339 B
Django/Jinja
{% extends "program.default.ninja.j2" %}
|
|
{% block variables %}
|
|
{{ super() }}
|
|
|
|
cflags = $cflags $
|
|
-DKERNEL_FILENAME=L\"popcorn.elf\" $
|
|
-DGNU_EFI_USE_MS_ABI $
|
|
-DHAVE_USE_MS_ABI $
|
|
-DEFI_DEBUG=0 $
|
|
-DEFI_DEBUG_CLEAR_MEMORY=0 $
|
|
-fPIC $
|
|
-fshort-wchar
|
|
|
|
ldflags = $ldflags $
|
|
-shared $
|
|
-T ${srcroot}/src/arch/x86_64/boot.ld
|
|
|
|
{% endblock %}
|