URL
https://opencores.org/ocsvn/c0or1k/c0or1k/trunk
Subversion Repositories c0or1k
Compare Revisions
- This comparison shows the changes necessary to convert path
/c0or1k/trunk/conts
- from Rev 2 to Rev 5
- ↔ Reverse comparison
Rev 2 → Rev 5
/posix/SConstruct
53,7 → 53,7
AR = config.toolchain_userspace + 'ar', |
RANLIB = config.toolchain_userspace + 'ranlib', |
CCFLAGS = ['-g','-nostdinc', '-nostdlib', '-ffreestanding', |
'-march=' + gcc_arch_flag, '-std=gnu99', '-Wall', '-Werror'], |
'-std=gnu99', '-Wall', '-Werror'], |
LINKFLAGS = ['-nostdlib'], |
ASFLAGS = ['-D__ASSEMBLY__'], |
PROGSUFFIX = '.elf', |
/libdev/SConstruct
35,7 → 35,7
env = Environment(CC = config.toolchain_userspace + 'gcc', |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', \ |
'-nostdinc', '-Wall', '-DVARIANT_' + variant.upper(), \ |
'-march=' + gcc_arch_flag, '-Werror'], |
'-Werror'], |
LINKFLAGS = ['-nostdlib'], |
ASFLAGS = ['-D__ASSEMBLY__'], |
ENV = {'PATH' : os.environ['PATH']}, |
/libmem/SConstruct
34,7 → 34,7
# This does not work, need to check |
test_env = Environment(CC = config.toolchain_userspace + 'gcc', |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall', \ |
'-nostdinc', '-Werror', '-march=' + gcc_arch_flag], |
'-nostdinc', '-Werror'], |
ENV = {'PATH' : os.environ['PATH']}, |
LIBS = ['mm', 'km', 'mc'], |
LIBPATH = ['#'], |
42,7 → 42,7
|
env = Environment(CC = config.toolchain_userspace + 'gcc', |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', \ |
'-Wall', '-Werror', '-march=' + gcc_arch_flag], |
'-Wall', '-Werror'], |
LINKFLAGS = ['-nostdlib'], |
ASFLAGS = ['-D__ASSEMBLY__'], |
ENV = {'PATH' : os.environ['PATH']}, |
/libl4/SConstruct
27,7 → 27,7
|
env = Environment(CC = config.toolchain_userspace + 'gcc', |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', \ |
'-nostdinc', '-Wall', '-Werror', '-march=' + gcc_arch_flag], |
'-nostdinc', '-Wall', '-Werror'], |
LINKFLAGS = ['-nostdlib'], |
ASFLAGS = ['-D__ASSEMBLY__'], |
ENV = {'PATH' : os.environ['PATH']}, |
/test_suite0/SConstruct
47,7 → 47,7
env = Environment(CC = config.toolchain_userspace + 'gcc', |
# We don't use -nostdinc because sometimes we need standard headers, |
# such as stdarg.h e.g. for variable args, as in printk(). |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall', '-march=' + gcc_arch_flag], |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall'], |
LINKFLAGS = ['-nostdlib', '-T' + "include/project_linker.lds", "-u_start"],\ |
ASFLAGS = ['-D__ASSEMBLY__'], \ |
PROGSUFFIX = '.elf', # The suffix to use for final executable\ |
/libc/SConstruct
30,7 → 30,7
|
env = Environment(CC = config.toolchain_userspace + 'gcc', |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', \ |
'-nostdinc', '-Wall', '-Werror', '-march=' + gcc_arch_flag], |
'-nostdinc', '-Wall', '-Werror'], |
LINKFLAGS = ['-nostdlib'], |
ASFLAGS = ['-D__ASSEMBLY__'], |
ENV = {'PATH' : os.environ['PATH']}, |
/baremetal/kmi_service/SConstruct
48,7 → 48,7
# We don't use -nostdinc because sometimes we need standard headers, |
# such as stdarg.h e.g. for variable args, as in printk(). |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall', \ |
'-Werror', '-march=' + gcc_arch_flag], \ |
'-Werror'], \ |
LINKFLAGS = ['-nostdlib', '-T' + "include/linker.lds", "-u_start"],\ |
ASFLAGS = ['-D__ASSEMBLY__'], \ |
PROGSUFFIX = '.elf', # The suffix to use for final executable |
/baremetal/timer_service/SConstruct
48,7 → 48,7
# We don't use -nostdinc because sometimes we need standard headers, |
# such as stdarg.h e.g. for variable args, as in printk(). |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall', \ |
'-Werror', '-march=' + gcc_arch_flag], \ |
'-Werror'], \ |
LINKFLAGS = ['-nostdlib', '-T' + "include/linker.lds", "-u_start"],\ |
ASFLAGS = ['-D__ASSEMBLY__'], \ |
PROGSUFFIX = '.elf', # The suffix to use for final executable |
/baremetal/test_suite/SConstruct
47,7 → 47,7
# We don't use -nostdinc because sometimes we need standard headers, |
# such as stdarg.h e.g. for variable args, as in printk(). |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall', \ |
'-Werror', '-march=' + gcc_arch_flag], |
'-Werror'], |
LINKFLAGS = ['-nostdlib', '-T' + "include/linker.lds", "-u_start"],\ |
ASFLAGS = ['-D__ASSEMBLY__'], \ |
PROGSUFFIX = '.elf', # The suffix to use for final executable\ |
/baremetal/hello_world/SConstruct
46,7 → 46,7
# We don't use -nostdinc because sometimes we need standard headers, |
# such as stdarg.h e.g. for variable args, as in printk(). |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall', \ |
'-Werror', '-march=' + gcc_arch_flag], |
'-Werror'], |
LINKFLAGS = ['-nostdlib', '-T' + "include/linker.lds", "-u_start"],\ |
ASFLAGS = ['-D__ASSEMBLY__'], \ |
PROGSUFFIX = '.elf', # The suffix to use for final executable |
/baremetal/uart_service/SConstruct
47,7 → 47,7
# We don't use -nostdinc because sometimes we need standard headers, |
# such as stdarg.h e.g. for variable args, as in printk(). |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall', \ |
'-Werror', '-march=' + gcc_arch_flag], |
'-Werror'], |
LINKFLAGS = ['-nostdlib', '-T' + "include/linker.lds", "-u_start"], |
ASFLAGS = ['-D__ASSEMBLY__'], \ |
PROGSUFFIX = '.elf', # The suffix to use for final executable\ |
/baremetal/empty/SConstruct
46,7 → 46,7
# We don't use -nostdinc because sometimes we need standard headers, |
# such as stdarg.h e.g. for variable args, as in printk(). |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall', \ |
'-Werror', '-march=' + gcc_arch_flag], |
'-Werror'], |
LINKFLAGS = ['-nostdlib', '-T' + "include/linker.lds", "-u_start"], |
ASFLAGS = ['-D__ASSEMBLY__'], \ |
PROGSUFFIX = '.elf', # The suffix to use for final executable\ |
/baremetal/threads_demo/SConstruct
46,7 → 46,7
# We don't use -nostdinc because sometimes we need standard headers, |
# such as stdarg.h e.g. for variable args, as in printk(). |
CCFLAGS = ['-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall', \ |
'-Werror', '-march=' + gcc_arch_flag], |
'-Werror'], |
LINKFLAGS = ['-nostdlib', '-T' + "include/linker.lds", "-u_start"], |
ASFLAGS = ['-D__ASSEMBLY__'], |
PROGSUFFIX = '.elf', # The suffix to use for final executable |