Changeset 058c240 in mainline for tools/autotool.py


Ignore:
Timestamp:
2018-07-05T21:41:17Z (6 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b83ec692
Parents:
acf6b55
git-author:
Jaroslav Jindrak <dzejrou@…> (2017-10-09 09:23:36)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:17)
Message:

cpp: added c++ to the build system, created libcpp, added and implemented the header file cstdio to libcpp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/autotool.py

    racf6b55 r058c240  
    323323
    324324        common['GCC'] = "%sgcc" % prefix
     325        common['GPP'] = "%sg++" % prefix
    325326
    326327        if (not path is None):
    327328                common['GCC'] = "%s/%s" % (path, common['GCC'])
     329                common['GPP'] = "%s/%s" % (path, common['GPP'])
    328330
    329331        check_app([common['GCC'], "--version"], "GNU GCC", details)
     
    613615                        common['CC'] = " ".join([common['GCC']] + cc_args)
    614616                        common['CC_AUTOGEN'] = common['CC']
     617
     618                        check_common(common, "GPP")
     619                        common['CPP'] = common['GPP']
    615620
    616621                if (config['COMPILER'] == "gcc_native"):
Note: See TracChangeset for help on using the changeset viewer.