2022-01-04 01:50:46 -05:00
|
|
|
project('riscv-qtech-os', ['c', 'cpp'],
|
|
|
|
default_options: [
|
|
|
|
'cpp_std=gnu++20',
|
|
|
|
'c_std=gnu11',
|
|
|
|
'c_flags=-Wall -Werror -Wextra',
|
|
|
|
'cpp_flags=-Wall -Werror -Wextra'
|
2022-01-03 19:11:49 -05:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2022-01-04 01:50:46 -05:00
|
|
|
if not meson.is_cross_build()
|
|
|
|
error('Kernel must be cross compiled')
|
|
|
|
endif
|
|
|
|
|
|
|
|
arch = host_machine.cpu_family()
|
|
|
|
platform = 'allwinner-d1'
|
|
|
|
# platform = 'qemu'
|
2022-01-03 19:11:49 -05:00
|
|
|
|
2022-01-04 01:50:46 -05:00
|
|
|
subdir('kernel')
|