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

Subversion Repositories c0or1k

[/] [c0or1k/] [trunk/] [conts/] [baremetal/] [empty/] [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
 
17
config = configuration_retrieve()
18
platform = config.platform
19
arch = config.arch
20
gcc_arch_flag = config.gcc_arch_flag
21
 
22
LIBL4_RELDIR = 'conts/libl4'
23
KERNEL_INCLUDE = join(PROJROOT, 'include')
24
LIBL4_DIR = join(PROJROOT, LIBL4_RELDIR)
25
LIBL4_INCLUDE = join(LIBL4_DIR, 'include')
26
LIBL4_LIBPATH = join(BUILDDIR, LIBL4_RELDIR)
27
 
28
# Locally important paths are here
29
LIBC_RELDIR = 'conts/libc'
30
LIBC_DIR = join(PROJROOT, LIBC_RELDIR)
31
LIBC_LIBPATH = join(BUILDDIR, LIBC_RELDIR)
32
LIBC_INCLUDE = [join(LIBC_DIR, 'include'), \
33
                join(LIBC_DIR, 'include/arch' + '/' + arch)]
34
 
35
LIBDEV_RELDIR = 'conts/libdev'
36
LIBDEV_DIR = join(PROJROOT, LIBDEV_RELDIR)
37
LIBDEV_LIBPATH = join(join(BUILDDIR, LIBDEV_RELDIR), 'sys-userspace')
38
LIBDEV_INCLUDE = [join(LIBDEV_DIR, 'uart/include')]
39
 
40
LIBMEM_RELDIR = 'conts/libmem'
41
LIBMEM_DIR = join(PROJROOT, LIBMEM_RELDIR)
42
LIBMEM_LIBPATH = join(BUILDDIR, LIBMEM_RELDIR)
43
LIBMEM_INCLUDE = LIBMEM_DIR
44
 
45
env = Environment(CC = config.toolchain_userspace + 'gcc',
46
          # We don't use -nostdinc because sometimes we need standard headers,
47
          # such as stdarg.h e.g. for variable args, as in printk().
48
          CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall', \
49 5 drasko
                     '-Werror'],
50 2 drasko
          LINKFLAGS = ['-nostdlib', '-T' + "include/linker.lds", "-u_start"],
51
                  ASFLAGS = ['-D__ASSEMBLY__'], \
52
                  PROGSUFFIX = '.elf',                  # The suffix to use for final executable\
53
                  ENV = {'PATH' : os.environ['PATH']},  # Inherit shell path\
54
                  LIBS = ['gcc', 'libl4', 'c-userspace', 'libdev-userspace', 'gcc', \
55
                  'libmm', 'libmc', 'libmalloc','c-userspace'], # libgcc.a - This is required for division routines.
56
                  CPPPATH = ["#include", KERNEL_INCLUDE, LIBL4_INCLUDE, LIBDEV_INCLUDE, \
57
                     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
 
64
objs = env.Object(src)
65
prog = env.Program('main.elf', objs)
66
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.