add el1 transfer at the boot stage in case higher EL is implemented
[lunaix-os.git] / lunaix-os / arch / aarch64 / LBuild
1 use("soc/gic")
2
3 sources([
4     "boot/init.c",
5     "boot/kremap.c",
6     "boot/start.S"
7 ])
8
9 sources([
10     "exception/entries.S",
11     "exception/context.S",
12     "exception/handler.c"
13 ])
14
15 sources([
16     "fault.c",
17     "trace.c"
18 ])
19
20 headers([
21     "includes"
22 ])
23
24 compile_opts([
25     "-mlittle-endian",
26     "-mgeneral-regs-only",
27     "-mabi=lp64",
28     "-mno-omit-leaf-frame-pointer"
29 ])