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

Subversion Repositories c0or1k

[/] [c0or1k/] [trunk/] [conts/] [baremetal/] [hello_world/] [SConstruct] - Blame information for rev 2

Go to most recent revision | 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
                                 '-Werror', '-march=' + gcc_arch_flag],
50
                  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', \
55
                  'libmm', 'libmc', 'libmalloc', 'gcc', 'c-userspace'],
56
                  # libgcc.a - This is required for division routines.
57
          CPPPATH = ["#include", KERNEL_INCLUDE, LIBL4_INCLUDE, LIBDEV_INCLUDE, \
58
                     LIBC_INCLUDE, LIBMEM_INCLUDE],
59
          LIBPATH = [LIBL4_LIBPATH, LIBDEV_LIBPATH, LIBC_LIBPATH, LIBMEM_LIBPATH],
60
          CPPFLAGS = '-include l4/config.h -include l4/macros.h -include l4/types.h -include l4lib/macros.h')
61
 
62
src = Glob('*.[cS]')
63
src += Glob('src/*.[cS]')
64
 
65
objs = env.Object(src)
66
prog = env.Program('main.elf', objs)
67
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.