mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-10-18 18:34:20 +08:00
[libdl] move libdl to posix folder (#5523)
This commit is contained in:

committed by
GitHub

parent
3606065803
commit
c89735a357
12
components/libc/posix/libdl/SConscript
Normal file
12
components/libc/posix/libdl/SConscript
Normal 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')
|
Reference in New Issue
Block a user