mirror of
https://github.com/drasko/codezero.git
synced 2026-02-06 06:53:18 +01:00
Correct the include path so that task compilation succeeds.
This commit is contained in:
@@ -194,10 +194,9 @@ else :
|
||||
CCFLAGS = [ '-g' , '-nostdlib' , '-ffreestanding' , '-std=gnu99' , '-Wall' , '-Werror' ] ,
|
||||
LINKFLAGS = [ '-nostdlib' ] ,
|
||||
ASFLAGS = [ '-D__ASSEMBLY__' ] ,
|
||||
LIBS = 'gcc' ,
|
||||
LIBS = taskLibraries + [ 'gcc' , libs['userspace'] ] ,
|
||||
CPPDEFINES = [ '__USERSPACE__' ] ,
|
||||
CPPPATH = [ '#' + buildDirectory + '/l4' , '#' + includeDirectory ] )
|
||||
#CPPPATH = [ '#' + buildDirectory , '#' + buildDirectory + '/l4' , '#' + includeDirectory , '#' + includeDirectory + '/l4' ] )
|
||||
CPPPATH = [ '#' + buildDirectory , '#' + buildDirectory + '/l4' , '#' + includeDirectory ] )
|
||||
|
||||
tasks = [ ]
|
||||
for task in [ f.name for f in Glob ( 'tasks/*' ) if f.name not in taskLibraryNames + [ 'bootdesc' ] ] :
|
||||
|
||||
Reference in New Issue
Block a user