Changeset b0afac0 in rtems_waf
- Timestamp:
- 06/15/16 01:14:16 (7 years ago)
- Branches:
- 8151754a5d6efd9b6be4d728f3633dc6a63672a9
- Children:
- 1aef190
- Parents:
- 93e5545
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rtems.py
r93e5545 rb0afac0 222 222 conf.env.LINKFLAGS = cflags['cflags'] + ldflags['ldflags'] 223 223 conf.env.LIB = flags['LIB'] 224 conf.env.LIBPATH = ldflags['libpath'] 224 225 225 226 conf.env.RTRACE_WRAPPER_ST = '-W %s' … … 514 515 return None 515 516 517 def root_filesystem(bld, name, files, tar, obj): 518 bld(name = name + '_tar', 519 target = tar, 520 source = files, 521 rule = 'SDIR=$PWD && cd ../.. && tar --format=ustar -cf $SDIR/${TGT} $(echo "${SRC}" | sed -e "s/\.\.\/\.\.\///\")') 522 bld.objects(name = name, 523 target = obj, 524 source = tar, 525 rule = '${OBJCOPY} -I binary -B ${RTEMS_ARCH} ${OBJCOPY_FLAGS} ${SRC} ${TGT}') 526 516 527 def clone_tasks(bld): 517 528 if bld.cmd == 'build': … … 714 725 [ { 'key': 'warnings', 'path': False, 'flags': { '-W': 1 }, 'cflags': False, 'lflags': False }, 715 726 { 'key': 'includes', 'path': True, 'flags': { '-I': 1, '-isystem': 2, '-sysroot': 2 } }, 727 { 'key': 'libpath', 'path': True, 'flags': { '-L': 1 } }, 716 728 { 'key': 'machines', 'path': True, 'flags': { '-O': 1, '-m': 1, '-f': 1 } }, 717 729 { 'key': 'specs', 'path': True, 'flags': { '-q': 1, '-B': 2, '--specs': 2 } } ]
Note: See TracChangeset
for help on using the changeset viewer.