Re: Getting started

2020-01-30 Thread Jonas Toth via cfe-commits
Hi Anshil, take a look at this: https://clang.llvm.org/docs/InternalsManual.html cxx1x is probably done already, but cxx2a has some outstanding features ;) In general, please use 'cfe-dev' instead of 'cfe-commits'. There is the normal discussion and questions/answers for developers. Regards Jon

Getting started

2020-01-27 Thread Anshil Gandhi via cfe-commits
Hi everyone, My name is Anshil Gandhi and I am currently in my third year of BSc double majoring in Computing Science and Mathematics. I am interested in developing the clang frontend, C++ 1x features implementation in particular. I have cloned the git repository of llvm and explored through vario

[PATCH] D52843: Update Clang Windows getting started docs

2018-10-04 Thread Reid Kleckner via Phabricator via cfe-commits
This revision was not accepted when it landed; it landed in state "Needs Review". This revision was automatically updated to reflect the committed changes. Closed by commit rC343809: Update Clang Windows getting started docs (authored by rnk, committed by ). Changed prior to commi

[PATCH] D52843: Update Clang Windows getting started docs

2018-10-04 Thread Reid Kleckner via Phabricator via cfe-commits
rnk marked an inline comment as done. rnk added a comment. I'm going to go ahead and commit this. Hopefully it's more accurate and useful than what we have, and we can fix any issues in post. https://reviews.llvm.org/D52843 ___ cfe-commits mailing

r343809 - Update Clang Windows getting started docs

2018-10-04 Thread Reid Kleckner via cfe-commits
Author: rnk Date: Thu Oct 4 13:34:52 2018 New Revision: 343809 URL: http://llvm.org/viewvc/llvm-project?rev=343809&view=rev Log: Update Clang Windows getting started docs Summary: - Update the example VS project generation to use VS2017. - Add docs for generating ninja build files, since

[PATCH] D52843: Update Clang Windows getting started docs

2018-10-03 Thread Reid Kleckner via Phabricator via cfe-commits
rnk marked 3 inline comments as done. rnk added inline comments. Comment at: clang/www/get_started.html:179 svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm STL_MSFT wrote: > Can these be HTTPS? (I had to figure out HTTPS incantations for `git

[PATCH] D52843: Update Clang Windows getting started docs

2018-10-03 Thread Reid Kleckner via Phabricator via cfe-commits
rnk updated this revision to Diff 168205. rnk added a comment. - Use https: where possible over http: - Fix CMake VS generator invocation https://reviews.llvm.org/D52843 Files: clang/www/get_started.html Index: clang/www/get_started.html ==

[PATCH] D52843: Update Clang Windows getting started docs

2018-10-03 Thread Zachary Turner via Phabricator via cfe-commits
zturner added inline comments. Comment at: clang/www/get_started.html:246 +"C:\Program Files (x86)\Microsoft Visual + Studio\2017\Professional\VC\Auxiliary\Build\vcvarsall.bat" x64 + zturner wrote: > STL_MSFT wrote: > > This assumes the Pro

[PATCH] D52843: Update Clang Windows getting started docs

2018-10-03 Thread Zachary Turner via Phabricator via cfe-commits
zturner added inline comments. Comment at: clang/www/get_started.html:246 +"C:\Program Files (x86)\Microsoft Visual + Studio\2017\Professional\VC\Auxiliary\Build\vcvarsall.bat" x64 + STL_MSFT wrote: > This assumes the Professional SKU; perh

[PATCH] D52843: Update Clang Windows getting started docs

2018-10-03 Thread Stephan T. Lavavej via Phabricator via cfe-commits
STL_MSFT added inline comments. Comment at: clang/www/get_started.html:160 http://www.cmake.org/cmake/resources/software.html";> http://www.cmake.org/cmake/resources/software.html +Visual Studio 2015 or later This URL redirects to `https://c

[PATCH] D52843: Update Clang Windows getting started docs

2018-10-03 Thread Stephen Kelly via Phabricator via cfe-commits
steveire added inline comments. Comment at: clang/www/get_started.html:197 +If you are using Visual Studio 2017: + cmake -G "Visual Studio 15 2017 Win64" ..\llvm +This will generate x64 binaries by default, which should perform better. smeenai wrote

[PATCH] D52843: Update Clang Windows getting started docs

2018-10-03 Thread Shoaib Meenai via Phabricator via cfe-commits
smeenai added inline comments. Comment at: clang/www/get_started.html:197 +If you are using Visual Studio 2017: + cmake -G "Visual Studio 15 2017 Win64" ..\llvm +This will generate x64 binaries by default, which should perform better. Does the Win64

[PATCH] D52843: Update Clang Windows getting started docs

2018-10-03 Thread Reid Kleckner via Phabricator via cfe-commits
rnk created this revision. rnk added reviewers: zturner, STL_MSFT. Herald added a subscriber: jfb. rnk added a subscriber: aaron.ballman. - Update the example VS project generation to use VS2017. - Add docs for generating ninja build files, since they are popular. - Remove reference to "make updat

Getting Started docs need updating with libcxxabi

2017-07-15 Thread Howard Hinnant via cfe-commits
http://clang.llvm.org/get_started.html Missing instructions to checkout llvm/projects/libcxxabi (now needed). Howard signature.asc Description: Message signed with OpenPGP ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/

[PATCH] D33547: Updated getting started guide for visual studio + cmake

2017-05-25 Thread Aaron Ballman via Phabricator via cfe-commits
aaron.ballman closed this revision. aaron.ballman added a comment. Commit in r303913 https://reviews.llvm.org/D33547 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

r303913 - Update the getting started documentation to match the corresponding LLVM commit in r303912.

2017-05-25 Thread Aaron Ballman via cfe-commits
Author: aaronballman Date: Thu May 25 16:02:49 2017 New Revision: 303913 URL: http://llvm.org/viewvc/llvm-project?rev=303913&view=rev Log: Update the getting started documentation to match the corresponding LLVM commit in r303912. Modified: cfe/trunk/www/get_started.html Modified:

[PATCH] D33547: Updated getting started guide for visual studio + cmake

2017-05-25 Thread Aaron Ballman via Phabricator via cfe-commits
aaron.ballman created this revision. It took me a while to track this down and I figured I'd save someone else the time. By default, CMake uses the 32-bit toolchain on Windows, even if generating a 64-bit solution. Given the size of Clang's code base, this can lead to quite a few link errors wi

r265963 - Update getting started docs

2016-04-11 Thread Reid Kleckner via cfe-commits
Author: rnk Date: Mon Apr 11 12:02:34 2016 New Revision: 265963 URL: http://llvm.org/viewvc/llvm-project?rev=265963&view=rev Log: Update getting started docs compiler-rt is optional. We often get email from users with compiler-rt build errors who don't actually need compiler-rt. M