Displaying 20 results from an estimated 601 matches for "gettingstarted".
2009 Dec 08
2
[LLVMdev] [PATCH] GettingStarted: mention problems with dynamic linking on Cygwin
---
OK, what about this attempt?
docs/GettingStarted.html | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index 2e2200d..51aba29 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -252,7 +252,8 @@ software you will need.</p>
</tr>
<...
2012 Nov 29
11
[LLVMdev] Getting Started
I know this process is well documented here http://llvm.org/docs/GettingStarted.html
But man do I love scripting things:
LLVM Getting Started (See http://llvm.org/docs/GettingStarted.html)
./getttingStarted.sh [-clang] [-compiler-rt] [-test-suite] [-branch branch]
[-dir path] [-r rev]
By default this script checks out ToT LLVM to the current working directory
Project Opti...
2009 Nov 29
2
[LLVMdev] [patch] website/trunk/docs/GettingStarted.html
Hello,
seems like GettingStarted.html is outdated regarding the version numbers
of the autoconf tools. I've changed it so they meet the versions in
AutoRegen.sh.
Josef
-------------- next part --------------
A non-text attachment was scrubbed...
Name: GettingStarted.diff
Type: text/x-patch
Size: 1514 bytes
Desc: not available...
2009 Dec 08
2
[LLVMdev] [PATCH] GettingStarted: mention problems with dynamic linking on Cygwin
---
My bad -- the patch was against 2.6. Hope this iteration will be the last :-)
docs/GettingStarted.html | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index 851bfb6..fd8f308 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -252,7 +252,8 @@ software you will need.</p>
</tr>
<...
2009 Dec 08
0
[LLVMdev] [PATCH] GettingStarted: mention problems with dynamic linking on Cygwin
Hello
> OK, what about this attempt?
The patch cannot be applied flawlessly. Please consider reading
http://llvm.org/docs/DeveloperPolicy.html#patches
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University
2009 Nov 30
0
[LLVMdev] [patch] website/trunk/docs/GettingStarted.html
On Nov 29, 2009, at 8:16 AM, Josef Eisl wrote:
> Hello,
>
> seems like GettingStarted.html is outdated regarding the version numbers
> of the autoconf tools. I've changed it so they meet the versions in
> AutoRegen.sh.
Hi Josef,
llvm/docs/GettingStarted.html (in the main llvm svn repo) seems up to date. The "website" module in svn is an old broken thing that s...
2012 Nov 29
0
[LLVMdev] Getting Started
On Thu, Nov 29, 2012 at 9:41 AM, Joe Abbey <jabbey at arxan.com> wrote:
> I know this process is well documented here
> http://llvm.org/docs/GettingStarted.html
>
> But man do I love scripting things:
>
> LLVM Getting Started (See http://llvm.org/docs/GettingStarted.html)
> ./getttingStarted.sh [-clang] [-compiler-rt] [-test-suite] [-branch branch]
> [-dir path] [-r rev]
>
I think this is a good idea, although personally I'd...
2009 Dec 08
0
[LLVMdev] [PATCH] GettingStarted: mention problems with dynamic linking on Cygwin
> My bad -- the patch was against 2.6. Hope this iteration will be the last :-)
Please carefully read the link I provided and add patch as an
attachement, not inline.
Thanks.
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University
2009 Dec 08
1
[LLVMdev] [PATCH] GettingStarted: mention problems with dynamic linking on Cygwin
...rmat (no svn checkout
right now), but GNU patch should accept it.
Btw, is it ok to send patch both inline (for easier review) and
attached (to be sure it is not damaged by the mailer)?
Gregory
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-GettingStarted-mention-problems-with-dynamic-linking.patch
Type: application/octet-stream
Size: 1214 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091209/26b0c2f0/attachment.obj>
2005 Sep 05
1
[LLVMdev] A small update of GettingStarted.html
...===========================================================
_________________________________________________________________
Log p� MSN Messenger direkte fra nettet http://webmessenger.msn.com/
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: GettingStarted.diff
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050905/d0369a38/attachment.ksh>
2009 Mar 27
2
[LLVMdev] LLVM-2.5 WinXP/Cygwin can't find puts() for the hello.c in GettingStarted document
I am using LLVM 2.5 release, together with llvm-gcc4.2-2.5.
For the hello.c demo testing found close to the end of the
GettingStarted document:
#include <stdio.h>
int main() {
printf("hello world\n");
return 0;
}
Following the instructions:
obtaining the bc file: /llvm-gcc -O3 -emit-llvm hello.c -c -o hello.bc/
running through lli: * */lli hello.bc/
I got this error msg: /*ERROR: Program used ex...
2009 Mar 03
1
[LLVMdev] Patch for GettingStarted.html
Hey,
I have written a few lines about Release and Debug Builds (SVN checkout
vs. LLVM distribution). I've also added the RELEASE_25 tag to the tags
list and corrected a typo.
Can someone please review? As I'm not a native speaker/writer it may
contain strange wording/spelling mistakes ;). Any feedback welcome.
BR
Josef
--
zapster
-------------- next part --------------
A non-text
2009 Mar 27
0
[LLVMdev] LLVM-2.5 WinXP/Cygwin can't find puts() for the hello.c in GettingStarted document
Hi, Chuck
> How could I fix this WinXP/Cygwin only thing?
windows does not support dynamic linking, so there are 2 ways of
providing external addresses of symbols:
1. register them explicitly
2. They should be available from some .DLL already preloaded into the binary.
However, I'm not sure for 2. since cygwin uses unix-style of external
symbols resolution.
--
With best regards, Anton
2009 Dec 08
0
[LLVMdev] LLVM 2.6 cygwin build fails
> I'm trying to build LLVM 2.6 (from svn branch release_26) on cygwin
> 1.7, and I have the following errors with both GCC 3.4.4 and GCC 4.3.4
>
> llvm[2]: Linking Release Loadable Module profile_rt.dll
Cygwin does not support dynamic linking (as any windows target).
For the moment - you can just build tools and not the runtime via
"make tools-only".
--
With best
2019 Jan 23
2
[RFC] migrating past C++11
...ix, it's still a platform and toolchain that matter to a number of us in the community.
What are you asking for precisely? Windows and MSVC versions aren’t as version-locked as some Linux distros are when it comes to compiler version. I’ve listed a precise MSVC version in the list (as we do in GettingStarted’s toolchain list <https://llvm.org/docs/GettingStarted.html#host-c-toolchain-both-compiler-and-standard-library>).
> Separately, there was talk of needing to have bots that specifically use the oldest supported toolchains, otherwise we can't genuinely promise that they are really sup...
2009 Dec 08
2
[LLVMdev] LLVM 2.6 cygwin build fails
...; For the moment - you can just build tools and not the runtime via
> "make tools-only".
Thanks! What about the following patch?
commit cca46eac77c6a397aa85c903ba516165b85f98a9
Author: Gregory Petrosyan <gregory.petrosyan at gmail.com>
Date: Tue Dec 8 21:11:55 2009 +0300
GettingStarted: mention problems with dynamic linking on Windows
Signed-off-by: Gregory Petrosyan <gregory.petrosyan at gmail.com>
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index 2e2200d..b1fce86 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -252,13 +25...
2014 Aug 03
2
[LLVMdev] Can't build clang 3.4.2
I can build llvm 3.4.2 fine, using instructions in GettingStarted.html,
and making assumptions to account for my using tar files instead of svn.
Although I had downloaded and extracted both llvm-3.4.2.src.tar.gz and
cfe-3.4.2.src.tar.gz, giving directories llvm-3.4.2.src and cfe-3.4.2.src,
clang apparently did not get built. The only files with names starting
wi...
2012 Nov 30
0
[LLVMdev] Getting Started
...mportance of which is not to be
underestimated). I have yet to see anyone complain about a lack of
automation for getting set up.
-- Sean Silva
On Thu, Nov 29, 2012 at 12:41 PM, Joe Abbey <jabbey at arxan.com> wrote:
> I know this process is well documented here
> http://llvm.org/docs/GettingStarted.html
>
> But man do I love scripting things:
>
> LLVM Getting Started (See http://llvm.org/docs/GettingStarted.html)
> ./getttingStarted.sh [-clang] [-compiler-rt] [-test-suite] [-branch branch]
> [-dir path] [-r rev]
>
> By default this script checks out ToT LLVM to the cu...
2005 Feb 09
2
[LLVMdev] Patches for MinGW Build instructions
On Wed, 9 Feb 2005, Chris Lattner wrote:
> On Wed, 9 Feb 2005, Henrik Bach wrote:
>
>> Here is my first try to document, how to build the llvm suite for MinGW.
>
> The GettingStarted patch looks fine to me, and I've applied it here:
> http://mail.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20050207/023986.html
>
> The other patch does not look ok. In particular, it would be much better to
> submit patches to make MinGW work as much like other platforms as p...
2018 Nov 16
2
LLVM_CONFIG_PATH when building Clang from sources
...you are doing with --strip-components is to
> merge the the source trees into a single directory. This won't work. You
> need to keep each project in its own directory and lay them out in a specific
> way. You should review the getting started guide here:
> https://llvm.org/docs/GettingStarted.html#getting-started-quickly-a-summary
Thanks Tom.
Yeah, that's what I am doing.
Does LLVM have a script ready that does all of this? There's no reason
for me and other dev's to waste time on this.
Jeff