Changes in meson/arch/ppc32/meson.build [581a54a:c89ae25] in mainline
- File:
-
- 1 edited
-
meson/arch/ppc32/meson.build (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
meson/arch/ppc32/meson.build
r581a54a rc89ae25 1 1 # 2 # Copyright (c) 202 1Jiri Svoboda2 # Copyright (c) 2023 Jiri Svoboda 3 3 # Copyright (c) 2019 Jiří Zárevúcky 4 4 # All rights reserved. … … 28 28 # 29 29 30 # FIXME: enable --gc-sections31 32 30 _common_c_args = [ '-D__BE__', '-fno-omit-frame-pointer', '-m32', '-Wa,-a32', '-mcpu=powerpc' ] 33 31 34 arch_kernel_c_args = _common_c_args + [ '-msoft-float' , '-fno-function-sections']32 arch_kernel_c_args = _common_c_args + [ '-msoft-float' ] 35 33 arch_uspace_c_args = _common_c_args + [ CONFIG_FPU ? '-mhard-float' : '-msoft-float' ] 36 34 arch_boot_c_args = arch_kernel_c_args 37 arch_kernel_link_args = [ '-nostdlib', '-Wl,-z,max-page-size=0x1000' , '-Wl,--no-check-sections', '-Wl,--no-gc-sections']35 arch_kernel_link_args = [ '-nostdlib', '-Wl,-z,max-page-size=0x1000' ] 38 36 arch_uspace_link_args = [ '-nostdlib', '-lgcc', '-Wl,-z,max-page-size=0x1000' ] 39 arch_boot_link_args = [] 37 arch_uspace_link_args += ldflags_ignore_rwx_segments 38 arch_boot_link_args = ldflags_ignore_rwx_segments 40 39 40 rd_essential += [ 41 'app/ofw' 42 ] 41 43 42 44 rd_essential_drv += [
Note:
See TracChangeset
for help on using the changeset viewer.
