[libc][posix] create 'posix' folder and move related files into it

This commit is contained in:
Meco Man
2021-10-17 17:19:12 -04:00
parent 9fe546b0d8
commit b513d37cf2
30 changed files with 15 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
from building import *
from utils import VersionCmp
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
group = DefineGroup('libc', src,
depend = ['RT_USING_PTHREADS', 'RT_USING_LIBC'], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
Return('group')