Changeset 9fb280c in mainline for tools/autotool.py
- Timestamp:
- 2019-07-19T15:57:15Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9fe2fd7
- Parents:
- a949f4a
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-07-19 15:56:35)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-07-19 15:57:15)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/autotool.py
ra949f4a r9fb280c 306 306 307 307 common['CLANG'] = "%sclang" % prefix 308 common['CLANGXX'] = "%sclang++" % prefix 308 309 309 310 if (not path is None): 310 311 common['CLANG'] = "%s/%s" % (path, common['CLANG']) 312 common['CLANGXX'] = "%s/%s" % (path, common['CLANGXX']) 311 313 312 314 check_app([common['CLANG'], "--version"], "clang", details) … … 625 627 check_common(common, "CLANG") 626 628 common['CC'] = common['CLANG'] 629 common['CXX'] = common['CLANGXX'] 627 630 cc_autogen = common['CC'] + " -no-integrated-as" 628 631 629 632 if (config['INTEGRATED_AS'] == "yes"): 630 633 common['CC'] += " -integrated-as" 634 common['CXX'] += " -integrated-as" 631 635 632 636 if (config['INTEGRATED_AS'] == "no"): 633 637 common['CC'] += " -no-integrated-as" 638 common['CXX'] += " -no-integrated-as" 634 639 635 640 # Find full path to libgcc
Note:
See TracChangeset
for help on using the changeset viewer.