Changeset 169e6e0 in mainline
- Timestamp:
- 2023-08-02T16:36:02Z (14 months ago)
- Branches:
- ticket/834-toolchain-update
- Children:
- 0989bc4
- Parents:
- 4586a3cd
- Location:
- meson/arch
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
meson/arch/arm64/meson.build
r4586a3cd r169e6e0 28 28 # 29 29 30 arch_uspace_c_args = [ '-D__LE__', '-fno-omit-frame-pointer' ]30 arch_uspace_c_args = [ '-D__LE__', '-fno-omit-frame-pointer', '-mno-outline-atomics' ] 31 31 arch_kernel_c_args = arch_uspace_c_args + [ '-march=armv8-a+nofp+nosimd', '-mgeneral-regs-only' ] 32 32 arch_kernel_link_args = [ '-nostdlib' ] … … 45 45 arch_boot_c_args = arch_uspace_c_args + [ '-fpic', '-fvisibility=hidden', '-fno-function-sections' ] 46 46 arch_boot_link_args = [ '-Wl,-shared', '-Wl,--no-gc-sections' ] 47 arch_boot_link_args += ['-Wl,--no-warn-rwx-segments'] 47 48 48 49 if MACHINE == 'virt' -
meson/arch/ia64/meson.build
r4586a3cd r169e6e0 38 38 arch_uspace_link_args = [ '-nostdlib', '-lgcc' ] 39 39 arch_kernel_link_args = [ '-nostdlib', '-Wl,-EL' ] 40 arch_boot_link_args = [ ]40 arch_boot_link_args = ['-Wl,--no-warn-rwx-segments'] 41 41 42 42 -
meson/arch/ppc32/meson.build
r4586a3cd r169e6e0 37 37 arch_kernel_link_args = [ '-nostdlib', '-Wl,-z,max-page-size=0x1000', '-Wl,--no-check-sections', '-Wl,--no-gc-sections' ] 38 38 arch_uspace_link_args = [ '-nostdlib', '-lgcc', '-Wl,-z,max-page-size=0x1000' ] 39 arch_boot_link_args = [] 39 arch_uspace_link_args += ['-Wl,--no-warn-rwx-segments'] 40 arch_boot_link_args = ['-Wl,--no-warn-rwx-segments'] 40 41 41 42 -
meson/arch/riscv64/meson.build
r4586a3cd r169e6e0 33 33 arch_kernel_link_args = [ '-nostdlib' ] 34 34 arch_uspace_link_args = [ '-nostdlib', '-lgcc' ] 35 arch_boot_link_args = [ ]35 arch_boot_link_args = ['-Wl,--no-warn-rwx-segments'] 36 36 37 37 rd_essential += [
Note:
See TracChangeset
for help on using the changeset viewer.