Changeset 8e2154e7 in mainline for tools


Ignore:
Timestamp:
2018-07-05T21:41:25Z (7 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
74aee0c
Parents:
a37eeb9
git-author:
Dzejrou <dzejrou@…> (2018-06-28 17:36:35)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:25)
Message:

cpp: restructured build system to fix ia64 errors, renamed CPP* macros to CXX* macros to avoid possible conflicts with preprocessor macros

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/autotool.py

    ra37eeb9 r8e2154e7  
    323323
    324324        common['GCC'] = "%sgcc" % prefix
    325         common['GPP'] = "%sg++" % prefix
     325        common['GXX'] = "%sg++" % prefix
    326326
    327327        if (not path is None):
    328328                common['GCC'] = "%s/%s" % (path, common['GCC'])
    329                 common['GPP'] = "%s/%s" % (path, common['GPP'])
     329                common['GXX'] = "%s/%s" % (path, common['GXX'])
    330330
    331331        check_app([common['GCC'], "--version"], "GNU GCC", details)
     
    616616                        common['CC_AUTOGEN'] = common['CC']
    617617
    618                         check_common(common, "GPP")
    619                         common['CPP'] = common['GPP']
     618                        check_common(common, "GXX")
     619                        common['CXX'] = common['GXX']
    620620
    621621                if (config['COMPILER'] == "gcc_native"):
Note: See TracChangeset for help on using the changeset viewer.