Changeset cb0677b in rtems-tools for tester/covoar/wscript


Ignore:
Timestamp:
09/10/17 21:11:19 (6 years ago)
Author:
Chris Johns <chrisj@…>
Branches:
5, master
Children:
f4773ac
Parents:
f9a4b2c
git-author:
Chris Johns <chrisj@…> (09/10/17 21:11:19)
git-committer:
Chris Johns <chrisj@…> (09/10/17 21:15:02)
Message:

Add Windows includes so the rtemstoolkit builds.

Closes #3128.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tester/covoar/wscript

    rf9a4b2c rcb0677b  
    5050    pass
    5151
    52 rtl_includes = ['../../rtemstoolkit',
    53                 '../../rtemstoolkit/elftoolchain/common',
    54                 '../../rtemstoolkit/elftoolchain/libelf',
    55                 '../../rtemstoolkit/libiberty']
    56 
    5752def options(opt):
    5853    opt.load('compiler_cxx')
     
    6762
    6863def build(bld):
     64    rtemstoolkit = '../../rtemstoolkit'
     65    rtl_includes = [rtemstoolkit,
     66                    rtemstoolkit + '/elftoolchain/libelf',
     67                    rtemstoolkit + '/elftoolchain/common',
     68                    rtemstoolkit + '/libiberty']
     69    if bld.env.DEST_OS == 'win32':
     70        rtl_includes += [rtemstoolkit + '/win32']
     71
    6972    bld.stlib(target = 'ccovoar',
    7073              source = ['app_common.cc',
Note: See TracChangeset for help on using the changeset viewer.