Re: [PATCH] D15130: Fix the clang driver when "-nostdlib" is present

2015-12-02 Thread Sumanth Gundapaneni via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL254535: Fix the clang driver when "-nostdlib" is present (authored by sgundapa). Changed prior to commit: http://reviews.llvm.org/D15130?vs=41582&id=41650#toc Repository: rL LLVM http://reviews.llvm

Re: [PATCH] D15130: Fix the clang driver when "-nostdlib" is present

2015-12-02 Thread Vasileios Kalintiris via cfe-commits
vkalintiris accepted this revision. vkalintiris added a comment. This revision is now accepted and ready to land. LGTM. Thank you for working on this. http://reviews.llvm.org/D15130 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://list

Re: [PATCH] D15130: Fix the clang driver when "-nostdlib" is present

2015-12-01 Thread Sumanth Gundapaneni via cfe-commits
sgundapa updated this revision to Diff 41582. http://reviews.llvm.org/D15130 Files: lib/Driver/Tools.cpp test/Driver/nostdlib.c Index: test/Driver/nostdlib.c === --- test/Driver/nostdlib.c +++ test/Driver/nostdlib.c @@ -9,3 +9,1

Re: [PATCH] D15130: Fix the clang driver when "-nostdlib" is present

2015-12-01 Thread Sumanth Gundapaneni via cfe-commits
sgundapa updated this revision to Diff 41570. sgundapa added a comment. Added a few tests in this new patch set http://reviews.llvm.org/D15130 Files: lib/Driver/Tools.cpp test/Driver/nostdlib.c Index: test/Driver/nostdlib.c ==

Re: [PATCH] D15130: Fix the clang driver when "-nostdlib" is present

2015-12-01 Thread Duncan P. N. Exon Smith via cfe-commits
dexonsmith added a subscriber: dexonsmith. dexonsmith added a comment. Testcase? http://reviews.llvm.org/D15130 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D15130: Fix the clang driver when "-nostdlib" is present

2015-12-01 Thread Duncan P. N. Exon Smith via cfe-commits
Testcase? > On 2015-Dec-01, at 14:58, Sumanth Gundapaneni via cfe-commits > wrote: > > sgundapa created this revision. > sgundapa added reviewers: vkalintiris, echristo. > sgundapa added a subscriber: cfe-commits. > > This patch is a fix to r252901 which changed the behavior of > clang driver

[PATCH] D15130: Fix the clang driver when "-nostdlib" is present

2015-12-01 Thread Sumanth Gundapaneni via cfe-commits
sgundapa created this revision. sgundapa added reviewers: vkalintiris, echristo. sgundapa added a subscriber: cfe-commits. This patch is a fix to r252901 which changed the behavior of clang driver. In the presence of "-nostdlib" none of the standard libraries should be passed to link line. http