Changes in meson/arch/arm64/meson.build [c89ae25:06f10ac] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
meson/arch/arm64/meson.build
rc89ae25 r06f10ac 1 1 # 2 # Copyright (c) 2021 Jiri Svoboda3 2 # Copyright (c) 2015 Petr Pavlu 4 3 # All rights reserved. … … 28 27 # 29 28 30 arch_uspace_c_args = [ 31 '-D__LE__', 32 '-fno-omit-frame-pointer', 33 cc.get_supported_arguments(['-mno-outline-atomics']), 34 ] 29 arch_uspace_c_args = [ '-D__LE__', '-fno-omit-frame-pointer' ] 35 30 arch_kernel_c_args = arch_uspace_c_args + [ '-march=armv8-a+nofp+nosimd', '-mgeneral-regs-only' ] 36 31 arch_kernel_link_args = [ '-nostdlib' ] … … 47 42 # processor is in the execution mode that has unaligned access enabled. The 48 43 # -mstrict-align option is therefore not needed. 49 arch_boot_c_args = arch_uspace_c_args + [ '-fpic', '-fvisibility=hidden' ]50 arch_boot_link_args = [ '-Wl,-shared' ] + ldflags_ignore_rwx_segments44 arch_boot_c_args = arch_uspace_c_args + [ '-fpic', '-fvisibility=hidden', '-fno-function-sections' ] 45 arch_boot_link_args = [ '-Wl,-shared', '-Wl,--no-gc-sections' ] 51 46 52 47 if MACHINE == 'virt' 53 rd_essential _drv+= [48 rd_essential += [ 54 49 'drv/char/pl011', 55 50 'drv/intctl/gicv2', … … 59 54 60 55 if MACHINE == 'hikey960' 61 rd_essential _drv+= [56 rd_essential += [ 62 57 'drv/char/pl011', 63 58 'drv/intctl/gicv2', … … 65 60 ] 66 61 endif 67 68 rd_drv += rd_essential_drv
Note:
See TracChangeset
for help on using the changeset viewer.