[libdl] move libdl to posix folder (#5523)

This commit is contained in:
Man, Jianting (Meco)
2022-01-20 07:55:31 -05:00
committed by GitHub
parent 3606065803
commit c89735a357
16 changed files with 46 additions and 38 deletions

View File

@@ -0,0 +1,12 @@
from building import *
Import('rtconfig')
src = Glob('*.c') + Glob('*.cpp') + Glob('arch/*.c')
cwd = GetCurrentDir()
group = []
CPPPATH = [cwd]
if rtconfig.PLATFORM == 'gcc':
group = DefineGroup('POSIX', src, depend = ['RT_USING_MODULE'], CPPPATH = CPPPATH)
Return('group')