aboutsummaryrefslogtreecommitdiffstats
path: root/doc/oldmds/gcc
diff options
context:
space:
mode:
author1138-4EB <1138-4EB@users.noreply.github.com>2017-02-19 18:49:32 +0100
committertgingold <tgingold@users.noreply.github.com>2017-12-10 12:02:05 +0100
commitbb37f17aef2e69655c61510c4896dd8cb303c993 (patch)
treec9d4b97c8d7197f40e8f5909beea2b4b5fa459f2 /doc/oldmds/gcc
parent87a5d4a2ea5172b4ba485d208092ecb88dce75cb (diff)
downloadghdl-bb37f17aef2e69655c61510c4896dd8cb303c993.tar.gz
ghdl-bb37f17aef2e69655c61510c4896dd8cb303c993.tar.bz2
ghdl-bb37f17aef2e69655c61510c4896dd8cb303c993.zip
Move split ols txts to doc/oldmds. Add shields to README. Change target of license shield on RTD.
Diffstat (limited to 'doc/oldmds/gcc')
-rw-r--r--doc/oldmds/gcc/ANNOUNCE21
-rw-r--r--doc/oldmds/gcc/INSTALL21
-rw-r--r--doc/oldmds/gcc/README51
3 files changed, 93 insertions, 0 deletions
diff --git a/doc/oldmds/gcc/ANNOUNCE b/doc/oldmds/gcc/ANNOUNCE
new file mode 100644
index 000000000..7b1060e20
--- /dev/null
+++ b/doc/oldmds/gcc/ANNOUNCE
@@ -0,0 +1,21 @@
+I am happy to introduce GHDL.
+
+GHDL is a GCC front-end for the VHDL (IEEE 1076) language, an hardware design
+language.
+
+Currently, GHDL implements most of VHDL-1987 and some features of
+VHDL-1993. It is mature enough to compile and run some complex design (such
+as a DLX processor and leon1, a SPARCv7 processor)
+
+GHDL has been developped on a GNU/Linux x86 system, and only this configuration
+has been tested (porting to other processor or system should not be an hard
+task, but there are system dependent files in the run time).
+
+GHDL is written in Ada95 (using GNAT) and relies on agcc, an Ada
+binding for GCC. It also includes a run-time library (written in Ada), named
+grt. The front-end and the library are both distributed under the GPL licence.
+
+For sources, binary tarballs, or for more information, go to
+http://ghdl.free.fr
+
+Tristan Gingold.
diff --git a/doc/oldmds/gcc/INSTALL b/doc/oldmds/gcc/INSTALL
new file mode 100644
index 000000000..b341317b5
--- /dev/null
+++ b/doc/oldmds/gcc/INSTALL
@@ -0,0 +1,21 @@
+Install file for the binary distribution of GHDL.
+
+GHDL is Copyright 2002 - 2015 Tristan Gingold.
+GHDL is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+The binary are installed in /usr/local directory. You cannot change this
+default location, unless you set links.
+
+You must be root to install this distribution.
+
+To install ghdl:
+$ su
+# tar -C / -jxvf @TARFILE@.tar.bz2
+
+Note: you must also have a C compiler and zlib installed.
+
+Tristan Gingold.
+
diff --git a/doc/oldmds/gcc/README b/doc/oldmds/gcc/README
new file mode 100644
index 000000000..c58e0f923
--- /dev/null
+++ b/doc/oldmds/gcc/README
@@ -0,0 +1,51 @@
+This is the README from the source distribution of GHDL.
+
+To get the binary distribution or more information, go to:
+ https://github.com/tgingold/ghdl
+
+Copyright:
+**********
+GHDL is copyright (c) 2002 - 2015 Tristan Gingold.
+See the GHDL manual for more details.
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+
+
+Building GHDL from sources:
+***************************
+
+See BUILD.txt
+
+Please report bugs and issues on https://github.com/tgingold/ghdl/issues
+
+If you cannot compile, please report the gcc version, GNAT version and gcc
+source version.
+
+* Note for ppc64 (and AIX ?) platform:
+The object file format contains an identifier for the source language. Because
+gcc doesn't know about the VHDL, gcc crashes very early. This could be fixed
+with a very simple change in gcc/config/rs6000/rs6000.c,
+function rs6000_output_function_epilogue (as of gcc 4.8):
+ else if (! strcmp (language_string, "GNU Objective-C"))
+ i = 14;
+ else
+- gcc_unreachable ();
++ i = 0;
+ fprintf (file, "%d,", i);
+
+ /* 8 single bit fields: global linkage (not set for C extern linkage,
+
+Tristan Gingold.