From 3e7b5ca3b968c3639135d6a1504c4a1a7001deae Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Tue, 21 Jul 2009 22:47:03 +0000
Subject: [PATCH] Various doc updates from Edward O'Callaghan!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76668 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/GettingStarted.html | 5 +++++
docs/ReleaseNotes-2.6.html | 11 ++++++++++-
docs/tutorial/JITTutorial1.html | 4 ++--
docs/tutorial/LangImpl3.html | 4 ++--
4 files changed, 19 insertions(+), 5 deletions(-)
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index df2cf63d3cc..f7bf5d24c0b 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -215,6 +215,11 @@ software you will need.
Arch |
Compilers |
+
+ AuroraUX |
+ x861 |
+ GCC |
+
Linux |
x861 |
diff --git a/docs/ReleaseNotes-2.6.html b/docs/ReleaseNotes-2.6.html
index 3a32dc9c546..6930a316db2 100644
--- a/docs/ReleaseNotes-2.6.html
+++ b/docs/ReleaseNotes-2.6.html
@@ -483,7 +483,7 @@ FIXME: remove this entry when this is no longer needed.
- Intel and AMD machines (IA32, X86-64, AMD64, EMT-64) running Red Hat
-Linux, Fedora Core and FreeBSD (and probably other unix-like systems).
+Linux, Fedora Core, FreeBSD and AuroraUX (and probably other unix-like systems).
PowerPC and X86-based Mac OS X systems, running 10.3 and above in 32-bit
and 64-bit modes.
Intel and AMD machines running on Win32 using MinGW libraries (native).
@@ -514,6 +514,15 @@ listed by component. If you run into a problem, please check the LLVM bug database and submit a bug if
there isn't already one.
+
+- LLVM will not correctly complie on Solaris and/or OpenSolaris
+using the stock GCC 3.x.x series 'out the box',
+See: Broken versions of GCC and other tools.
+However, A Modern GCC Build
+for x86/x64 has been made available from the third party AuroraUX Project
+that has been meticulously tested for bootstrapping LLVM & Clang.
+
+
diff --git a/docs/tutorial/JITTutorial1.html b/docs/tutorial/JITTutorial1.html
index ac3958e6427..5c65399c0c6 100644
--- a/docs/tutorial/JITTutorial1.html
+++ b/docs/tutorial/JITTutorial1.html
@@ -107,7 +107,7 @@ first chunk of our makeLLVMModule()
:
Module* makeLLVMModule() {
// Module Construction
- Module* mod = new Module("test");
+ Module* mod = new Module("test", getGlobalContext());
@@ -200,7 +200,7 @@ function will interoperate properly with C code, which is a good thing.
Owen Anderson
The LLVM Compiler Infrastructure
- Last modified: $Date: 2007-10-17 11:05:13 -0700 (Wed, 17 Oct 2007) $
+ Last modified: $Date: 2009-07-21 11:05:13 -0700 (Tue, 21 Jul 2009) $