OpenCores
URL https://opencores.org/ocsvn/c0or1k/c0or1k/trunk

Subversion Repositories c0or1k

[/] [c0or1k/] [trunk/] [conts/] [baremetal/] [kmi_service/] [SConstruct] - Blame information for rev 5

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 drasko
# -*- mode: python; coding: utf-8; -*-
2
#
3
#  Codezero -- Virtualization microkernel for embedded systems.
4
#
5
#  Copyright © 2009  B Labs Ltd
6
#
7
import os, shelve, sys
8
from os.path import *
9
 
10
PROJRELROOT = '../..'
11
 
12
sys.path.append(PROJRELROOT)
13
 
14
from config.projpaths import *
15
from config.configuration import *
16
from configure import *
17
 
18
config = configuration_retrieve()
19
arch = config.arch
20
platform = config.platform
21
gcc_arch_flag = config.gcc_arch_flag
22
 
23
# Wrapper library for system calls
24
LIBL4_RELDIR = 'conts/libl4'
25
KERNEL_INCLUDE = join(PROJROOT, 'include')
26
LIBL4_DIR = join(PROJROOT, LIBL4_RELDIR)
27
LIBL4_INCLUDE = join(LIBL4_DIR, 'include')
28
LIBL4_LIBPATH = join(BUILDDIR, LIBL4_RELDIR)
29
 
30
# Some user-space libraries
31
LIBC_RELDIR = 'conts/libc'
32
LIBC_DIR = join(PROJROOT, LIBC_RELDIR)
33
LIBC_LIBPATH = join(BUILDDIR, LIBC_RELDIR)
34
LIBC_INCLUDE = [join(LIBC_DIR, 'include'), \
35
                join(LIBC_DIR, 'include/arch' + '/' + arch)]
36
 
37
LIBDEV_RELDIR = 'conts/libdev'
38
LIBDEV_DIR = join(PROJROOT, LIBDEV_RELDIR)
39
LIBDEV_LIBPATH = join(join(BUILDDIR, LIBDEV_RELDIR), 'sys-userspace')
40
LIBDEV_INCLUDE = join(LIBDEV_DIR, 'include')
41
 
42
LIBMEM_RELDIR = 'conts/libmem'
43
LIBMEM_DIR = join(PROJROOT, LIBMEM_RELDIR)
44
LIBMEM_LIBPATH = join(BUILDDIR, LIBMEM_RELDIR)
45
LIBMEM_INCLUDE = LIBMEM_DIR
46
 
47
env = Environment(CC = config.toolchain_userspace + 'gcc',
48
                  # We don't use -nostdinc because sometimes we need standard headers,
49
                  # such as stdarg.h e.g. for variable args, as in printk().
50
                  CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall', \
51 5 drasko
                     '-Werror'], \
52 2 drasko
                  LINKFLAGS = ['-nostdlib', '-T' + "include/linker.lds", "-u_start"],\
53
                  ASFLAGS = ['-D__ASSEMBLY__'], \
54
          PROGSUFFIX = '.elf', # The suffix to use for final executable
55
          ENV = {'PATH' : os.environ['PATH']}, # Inherit shell path
56
          LIBS = ['gcc', 'libl4', 'c-userspace', 'libdev-userspace', \
57
                  'libmm', 'libmc', 'libmalloc', 'gcc', 'c-userspace'],
58
                  # libgcc.a - This is required for division routines.
59
          CPPPATH = ["#include", KERNEL_INCLUDE, LIBL4_INCLUDE, LIBDEV_INCLUDE, \
60
                     LIBC_INCLUDE, LIBMEM_INCLUDE],
61
          LIBPATH = [LIBL4_LIBPATH, LIBDEV_LIBPATH, LIBC_LIBPATH, LIBMEM_LIBPATH],
62
          CPPFLAGS = '-include l4/config.h -include l4/macros.h -include l4/types.h')
63
 
64
src = Glob('*.[cS]')
65
src += Glob('src/*.[cS]')
66
src += Glob('src/arch/*.[cS]')
67
 
68
objs = env.Object(src)
69
prog = env.Program('main.elf', objs)
70
Depends(prog, 'include/linker.lds')

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.