2023-01-09 10:08:55 +08:00
|
|
|
import os
|
|
|
|
from building import *
|
|
|
|
|
2024-06-05 10:04:32 +08:00
|
|
|
group = []
|
2023-01-09 10:08:55 +08:00
|
|
|
|
2023-01-11 16:24:51 +08:00
|
|
|
if GetDepend('ARCH_ARM_CORTEX_A') or GetDepend('ARCH_ARMV8') or GetDepend('ARCH_RISCV64'):
|
2023-01-09 10:08:55 +08:00
|
|
|
cwd = GetCurrentDir()
|
2023-10-17 13:07:59 +08:00
|
|
|
src = Glob('*.c') + Glob('*_gcc.S')
|
|
|
|
if not GetDepend('RT_USING_MEMBLOCK'):
|
|
|
|
SrcRemove(src, ['mm_memblock.c'])
|
|
|
|
|
2023-01-09 10:08:55 +08:00
|
|
|
CPPPATH = [cwd]
|
|
|
|
|
2023-01-11 16:24:51 +08:00
|
|
|
group = DefineGroup('mm', src, depend = ['ARCH_MM_MMU'], CPPPATH = CPPPATH)
|
2023-01-09 10:08:55 +08:00
|
|
|
|
2024-06-05 10:04:32 +08:00
|
|
|
Return('group')
|