source: mainline/meson/arch/ia64/meson.build@ 58ef532

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 58ef532 was 318af1a, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 6 years ago

ia64 boot

  • Property mode set to 100644
File size: 694 bytes
Line 
1arch_uspace_c_args = [ '-D__LE__', '-fno-unwind-tables' ]
2arch_kernel_c_args = arch_uspace_c_args + [ '-mconstant-gp', '-mfixed-range=f32-f127' ]
3if MACHINE == 'i460GX'
4 arch_kernel_c_args += [ '-DI460GX' ]
5endif
6
7arch_boot_c_args = [ '-D__LE__', '-fno-unwind-tables', '-mfixed-range=f32-f127', '-mno-pic', '-mno-sdata' ]
8
9arch_uspace_link_args = [ '-nostdlib', '-lgcc' ]
10arch_kernel_link_args = [ '-nostdlib', '-Wl,-EL' ]
11arch_boot_link_args = []
12
13
14if MACHINE == 'i460GX'
15 rd_essential += [
16 'drv/platform/pc',
17 'drv/bus/pci/pciintel',
18 'drv/bus/isa',
19 'drv/char/i8042',
20 'drv/hid/xtkbd',
21 ]
22
23elif MACHINE == 'ski'
24 rd_essential += [
25 'drv/char/ski-con',
26 'drv/platform/ski',
27 ]
28
29endif
Note: See TracBrowser for help on using the repository browser.