aboutsummaryrefslogtreecommitdiffstats
path: root/dist/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 /dist/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 'dist/gcc')
-rw-r--r--dist/gcc/ANNOUNCE21
-rw-r--r--dist/gcc/INSTALL21
-rw-r--r--dist/gcc/README51
3 files changed, 0 insertions, 93 deletions
diff --git a/dist/gcc/ANNOUNCE b/dist/gcc/ANNOUNCE
deleted file mode 100644
index 7b1060e20..000000000
--- a/dist/gcc/ANNOUNCE
+++ /dev/null
@@ -1,21 +0,0 @@
-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/dist/gcc/INSTALL b/dist/gcc/INSTALL
deleted file mode 100644
index b341317b5..000000000
--- a/dist/gcc/INSTALL
+++ /dev/null
@@ -1,21 +0,0 @@
-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/dist/gcc/README b/dist/gcc/README
deleted file mode 100644
index c58e0f923..000000000
--- a/dist/gcc/README
+++ /dev/null
@@ -1,51 +0,0 @@
-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.