r292192 - Fix AArch64 global-merge backend option name.

2017-01-16 Thread Frederic Riss via cfe-commits
Author: friss Date: Mon Jan 16 21:38:45 2017 New Revision: 292192 URL: http://llvm.org/viewvc/llvm-project?rev=292192&view=rev Log: Fix AArch64 global-merge backend option name. -mglobal-merge is translated to the appropriate backend option in the driver. r277322 changed the AArch64 option name i

Re: [PATCH] D22463: [RFC] Moving to GitHub Proposal: NOT DECISION!

2016-07-18 Thread Frederic Riss via cfe-commits
friss added inline comments. Comment at: docs/Proposals/GitHub.rst:220 @@ +219,3 @@ +8. Tell people living downstream to pick up commits from the official git + repository. +9. Give things time to settle. We could play some games like disabling the SVN vsk wrote

r257543 - [Darwin] Fix deployment target detection

2016-01-12 Thread Frederic Riss via cfe-commits
Author: friss Date: Tue Jan 12 17:47:59 2016 New Revision: 257543 URL: http://llvm.org/viewvc/llvm-project?rev=257543&view=rev Log: [Darwin] Fix deployment target detection There was a thinko in the deployment target detection code that made the -isysroot parsing have precedence over the environm

Re: [PATCH] D15455: [Driver] Let -static override the toolchain default PIC setting.

2015-12-11 Thread Frederic Riss via cfe-commits
friss added reviewers: silvas, probinson. friss added a comment. Adding some SCE people, as their platform would be impacted by that change. http://reviews.llvm.org/D15455 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org

Re: [PATCH] D15455: [Driver] Let -static override the toolchain default PIC setting.

2015-12-11 Thread Frederic Riss via cfe-commits
friss added a comment. Just because it makes the behavior more intuitive? If you toolchain does PIC by default, it's because you are mostly building shared objects. When you are building a static object, it's highly likely that you don't need PIC. There should be a way to enable it, but I find

[PATCH] D15455: [Driver] Let -static override the toolchain default PIC setting.

2015-12-11 Thread Frederic Riss via cfe-commits
friss created this revision. friss added reviewers: jyknight, rnk, joerg. friss added a subscriber: cfe-commits. In r245667 -static was changed not to disable -fPIC as they control 2 different concepts. On toolchains that enable -fPIC by default, this means that now you have to pass "-static -fno-