Test program for bare repos now links with libl4 and libc.

The userspace bare libc has been re-added to the repo.
This commit is contained in:
Bahadir Balban
2009-09-19 12:30:37 +03:00
parent e4f80c4579
commit 19a84b02da
6 changed files with 152 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
# -*- mode: python; coding: utf-8; -*-
#
# Codezero -- a microkernel for embedded systems.
# Codezero -- Virtualization microkernel for embedded systems.
#
# Copyright © 2009 B Labs Ltd
#
@@ -40,10 +40,4 @@ objects += SConscript('src/lib/SConscript', exports = {'symbols' : all_syms, 'en
objects += SConscript('src/api/SConscript', exports = {'symbols' : all_syms, 'env' : env})
kernel_elf = env.Program(BUILDDIR + '/kernel.elf', objects)
libl4 = SConscript('conts/libl4/SConscript', \
exports = { 'arch' : arch }, duplicate = 0, \
variant_dir = join(BUILDDIR, os.path.relpath('conts/libl4', PROJROOT)))
Alias('libl4', libl4)
Alias('kernel', kernel_elf)