This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[ada] fix no os system interface
- From: Richard Henderson <rth at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Sun, 23 Dec 2001 05:21:17 -0800
- Subject: [ada] fix no os system interface
I'm not sure why alpha-linux would choose this implementation
instead of the glibc pthreads implementation, but it's still
a bug to be fixed.
FWIW, Ada now successfully bootstraps on alpha-linux, though
I'm sure the runtime is far from complete.
Committed as obvious.
r~
* 5nosinte.ads: Get definition of "int" from Interfaces.C.
Index: 5nosinte.ads
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ada/5nosinte.ads,v
retrieving revision 1.1
diff -c -p -d -r1.1 5nosinte.ads
*** 5nosinte.ads 2001/10/02 13:42:26 1.1
--- 5nosinte.ads 2001/12/23 13:13:19
***************
*** 36,43 ****
--- 36,46 ----
-- This is the no tasking version
+ with Interfaces.C;
package System.OS_Interface is
pragma Preelaborate;
+
+ subtype int is Interfaces.C.int;
-------------
-- Signals --