mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
Remove a few redundant paths from the include path.
This commit is contained in:
@@ -177,7 +177,7 @@ else :
|
||||
LINKFLAGS = [ '-nostdlib' ] ,
|
||||
ASFLAGS = [ '-D__ASSEMBLY__' ] ,
|
||||
LIBS = 'gcc' ,
|
||||
CPPPATH = [ '#' + buildDirectory , '#' + buildDirectory + '/l4' , '#' + includeDirectory , '#' + includeDirectory + '/l4' ] )
|
||||
CPPPATH = [ '#' + buildDirectory , '#' + buildDirectory + '/l4' , '#' + includeDirectory ] )
|
||||
|
||||
taskLibraryNames = [ f.name for f in Glob ( 'tasks/lib*' ) ]
|
||||
|
||||
@@ -196,7 +196,8 @@ else :
|
||||
ASFLAGS = [ '-D__ASSEMBLY__' ] ,
|
||||
LIBS = 'gcc' ,
|
||||
CPPDEFINES = [ '__USERSPACE__' ] ,
|
||||
CPPPATH = [ '#' + buildDirectory , '#' + buildDirectory + '/l4' , '#' + includeDirectory , '#' + includeDirectory + '/l4' ] )
|
||||
CPPPATH = [ '#' + buildDirectory + '/l4' , '#' + includeDirectory ] )
|
||||
#CPPPATH = [ '#' + buildDirectory , '#' + buildDirectory + '/l4' , '#' + includeDirectory , '#' + includeDirectory + '/l4' ] )
|
||||
|
||||
tasks = [ ]
|
||||
for task in [ f.name for f in Glob ( 'tasks/*' ) if f.name not in taskLibraryNames + [ 'bootdesc' ] ] :
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
Import ( 'environment' )
|
||||
|
||||
e = environment.Clone ( )
|
||||
e.Append ( CPPPATH = [ 'include' , '#libs/c/include/' , '#tasks/libl4/include' , '#tasks/libmem' , '#tasks/libposix/include' ] )
|
||||
e.Append ( CPPPATH = [ 'include' , '#libs/c/include/' , '#tasks/libl4/include' , '#tasks/libmem' , '#tasks/libposix/include' ] )
|
||||
|
||||
# TODO: There are errors in this code that -Werror gives problems with.
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
Import ( 'environment' )
|
||||
|
||||
e = environment.Clone ( )
|
||||
e.Append ( CPPPATH = [ 'include' , '#libs/c/include/' , '#tasks/libl4/include' , '#tasks/libmem' , '#tasks/libposix/include' ] )
|
||||
e.Append ( CPPPATH = [ 'include' , '#libs/c/include/' , '#tasks/libl4/include' , '#tasks/libmem' , '#tasks/libposix/include' ] )
|
||||
|
||||
# TODO: There are errors in this code that -Werror gives problems with.
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
Import ( 'environment' )
|
||||
|
||||
e = environment.Clone ( )
|
||||
e.Append ( CPPPATH = [ 'include' , '#libs/c/include/' , '#tasks/libl4/include' , '#tasks/libmem' , '#tasks/libposix/include' ] )
|
||||
e.Append ( CPPPATH = [ 'include' , '#libs/c/include/' , '#tasks/libl4/include' , '#tasks/libmem' , '#tasks/libposix/include' ] )
|
||||
|
||||
# TODO: There are errors in this code that -Werror gives problems with.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user