rt-thread-official/components/libc/pthreads/SConscript

23 lines
537 B
Python
Raw Normal View History

2013-01-08 22:40:58 +08:00
from building import *
from utils import VersionCmp
2013-01-08 22:40:58 +08:00
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
CPPDEFINES = []
# only enable POSIX.1b-1993 Real-time extensions
libc_ver = GetDepend('LIBC_VERSION')
try:
ver = libc_ver.split(' ')
ver = ver[1]
if VersionCmp(ver, "2.5.0") == 1:
CPPDEFINES = ['_POSIX_C_SOURCE=199309L']
except :
pass
2020-12-19 16:49:11 +08:00
group = DefineGroup('libc', src,
depend = ['RT_USING_PTHREADS', 'RT_USING_LIBC'], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
2013-01-08 22:40:58 +08:00
Return('group')