mirror of
https://github.com/drasko/codezero.git
synced 2026-01-24 16:53:14 +01:00
utcb handling helper routines for the thread library.
This is one of the steps we need in the process of providing a similar interface for thread creation which can be found in the mainstream operating systems like Linux.
This commit is contained in:
@@ -15,8 +15,11 @@ from config.projpaths import *
|
||||
|
||||
Import('env')
|
||||
|
||||
LIBMEM_RELDIR = 'conts/libmem'
|
||||
LIBMEM_DIR = join(PROJROOT, LIBMEM_RELDIR)
|
||||
|
||||
e = env.Clone()
|
||||
e.Append(CPPPATH = ['include/l4thread'])
|
||||
e.Append(CPPPATH = ['include/l4thread', LIBMEM_DIR])
|
||||
|
||||
source = [Glob('*.[cS]') + Glob('src/*.[cS]')]
|
||||
objects = e.StaticObject(source)
|
||||
|
||||
Reference in New Issue
Block a user