mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
36 lines
527 B
Django/Jinja
36 lines
527 B
Django/Jinja
{% extends "target.default.j2" %}
|
|
|
|
{% block binaries %}
|
|
ld = ld
|
|
cc = clang
|
|
cxx = clang++
|
|
nasm = nasm
|
|
{% endblock %}
|
|
|
|
{% block variables %}
|
|
|
|
ccflags = $ccflags $
|
|
-ggdb $
|
|
-nostdlib $
|
|
-ffreestanding $
|
|
-nodefaultlibs $
|
|
-fno-builtin $
|
|
-mno-sse $
|
|
-fno-omit-frame-pointer $
|
|
-mno-red-zone $
|
|
-fshort-wchar
|
|
|
|
cxxflags = $cxxflags $
|
|
-nostdlibinc $
|
|
-fno-exceptions $
|
|
-fno-rtti
|
|
|
|
ldflags = $ldflags $
|
|
-g $
|
|
-nostdlib $
|
|
-znocombreloc $
|
|
-Bsymbolic $
|
|
-nostartfiles
|
|
|
|
{% endblock %}
|