Changeset 058c240 in mainline for tools/autotool.py
- Timestamp:
- 2018-07-05T21:41:17Z (6 years ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/autotool.py
racf6b55 r058c240 323 323 324 324 common['GCC'] = "%sgcc" % prefix 325 common['GPP'] = "%sg++" % prefix 325 326 326 327 if (not path is None): 327 328 common['GCC'] = "%s/%s" % (path, common['GCC']) 329 common['GPP'] = "%s/%s" % (path, common['GPP']) 328 330 329 331 check_app([common['GCC'], "--version"], "GNU GCC", details) … … 613 615 common['CC'] = " ".join([common['GCC']] + cc_args) 614 616 common['CC_AUTOGEN'] = common['CC'] 617 618 check_common(common, "GPP") 619 common['CPP'] = common['GPP'] 615 620 616 621 if (config['COMPILER'] == "gcc_native"):
Note:
See TracChangeset
for help on using the changeset viewer.