mirror of
https://github.com/drasko/codezero.git
synced 2026-07-09 17:04:15 +02:00
Removed arch symlink creation. Simply very hard to get SCons to do it.
This commit is contained in:
@@ -35,14 +35,20 @@ env = Environment(CC = 'arm-none-linux-gnueabi-gcc',
|
|||||||
LIBS = 'gcc',
|
LIBS = 'gcc',
|
||||||
CPPPATH = ['include', 'include/l4lib/arch', join(PROJROOT, 'include') ])
|
CPPPATH = ['include', 'include/l4lib/arch', join(PROJROOT, 'include') ])
|
||||||
|
|
||||||
|
|
||||||
def create_symlinks(arch):
|
def create_symlinks(arch):
|
||||||
if not os.path.exists("include/l4lib/arch"):
|
print os.getcwd()
|
||||||
os.system("ln -s %s %s" % ("arch-" + arch, "include/l4lib/arch"))
|
prefix = 'conts/libl4/include/l4lib'
|
||||||
|
symlink = join(prefix, 'arch')
|
||||||
|
reallink = join(prefix, 'arch-' + arch)
|
||||||
|
|
||||||
|
if not os.path.exists(symlink):
|
||||||
|
cmd = "ln -s %s %s" % (reallink, symlink)
|
||||||
|
print cmd
|
||||||
|
os.system(cmd)
|
||||||
|
|
||||||
# TODO: There are errors in this code that -Werror gives problems with.
|
# TODO: There are errors in this code that -Werror gives problems with.
|
||||||
|
|
||||||
create_symlinks(arch)
|
#create_symlinks(arch)
|
||||||
objects = env.StaticObject(Glob('src/*.c') + Glob('src/' + arch + '/*.[cS]'))
|
objects = env.StaticObject(Glob('src/*.c') + Glob('src/' + arch + '/*.[cS]'))
|
||||||
library = env.StaticLibrary('l4', objects)
|
library = env.StaticLibrary('l4', objects)
|
||||||
|
|
||||||
|
|||||||
@@ -25,13 +25,8 @@ env = Environment(CC = 'arm-none-linux-gnueabi-gcc',
|
|||||||
LIBS = 'gcc',
|
LIBS = 'gcc',
|
||||||
CPPPATH = ['#include', '#include/l4lib/arch', join(PROJROOT,'include') ])
|
CPPPATH = ['#include', '#include/l4lib/arch', join(PROJROOT,'include') ])
|
||||||
|
|
||||||
def create_symlinks(arch):
|
|
||||||
if not os.path.exists("include/l4lib/arch"):
|
|
||||||
os.system("ln -s %s %s" % ("arch-" + arch, "include/l4lib/arch"))
|
|
||||||
|
|
||||||
# TODO: There are errors in this code that -Werror gives problems with.
|
# TODO: There are errors in this code that -Werror gives problems with.
|
||||||
|
|
||||||
create_symlinks(arch)
|
|
||||||
objects = env.StaticObject(Glob('src/*.c') + Glob('src/' + arch + '/*.[cS]'))
|
objects = env.StaticObject(Glob('src/*.c') + Glob('src/' + arch + '/*.[cS]'))
|
||||||
library = env.StaticLibrary('l4', objects)
|
library = env.StaticLibrary('l4', objects)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user