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

Subversion Repositories c0or1k

[/] [c0or1k/] [trunk/] [conts/] [test_suite0/] [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 config.lib import *
17
 
18
config = configuration_retrieve()
19
arch = config.arch
20
subarch = config.subarch
21
platform = config.platform
22
gcc_arch_flag = config.gcc_arch_flag
23
 
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
# Locally important paths are here
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, 'uart/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 5 drasko
                  CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall'],
51 2 drasko
                  LINKFLAGS = ['-nostdlib', '-T' + "include/project_linker.lds", "-u_start"],\
52
                  ASFLAGS = ['-D__ASSEMBLY__'], \
53
                  PROGSUFFIX = '.elf',                  # The suffix to use for final executable\
54
                  ENV = {'PATH' : os.environ['PATH']},  # Inherit shell path\
55
                  LIBS = ['gcc', 'libl4', 'libmc', 'c-userspace', 'libdev-userspace', 'gcc', 'libmalloc',
56
                  'c-userspace'],       # libgcc.a - This is required for division routines.
57
                  CPPPATH = ["#include", KERNEL_INCLUDE, LIBL4_INCLUDE, LIBDEV_INCLUDE, LIBC_INCLUDE, LIBMEM_INCLUDE],
58
          LIBPATH = [LIBL4_LIBPATH, LIBDEV_LIBPATH, LIBC_LIBPATH, LIBMEM_LIBPATH],
59
                  CPPFLAGS = '-include l4/config.h -include l4/macros.h -include l4/types.h')
60
 
61
src = Glob('*.[cS]')
62
src += Glob('src/*.[cS]')
63
src += Glob('src/arch/' + arch + '/*.[cS]')
64
src += Glob('src/api/*.c');
65
src += Glob('src/perf/*.c');
66
src += Glob('src/cli_serv/*.c');
67
src += Glob('src/mthread/*.c');
68
src += Glob('src/arch/' + arch + '/' + subarch + '/*.[cS]')
69
objs = env.Object(src)
70
prog = env.Program('main.elf', objs)
71
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.