Skip to content
Snippets Groups Projects
Commit 1119f461 authored by André Santos's avatar André Santos
Browse files

[project @ 1997-07-07 17:08:21 by andre]

RS6000 prof/conc patches
parent f1a9f8b5
No related merge requests found
......@@ -4,7 +4,7 @@
#
# Makefile for building the GHC Prelude libraries umpteen ways
#
# $Id: Makefile,v 1.12 1997/07/05 01:04:30 sof Exp $
# $Id: Makefile,v 1.13 1997/07/07 17:08:21 andre Exp $
#
#
#################################################################################
......@@ -55,11 +55,14 @@ endif
glaExts/PackedString_HC_OPTS += -monly-3-regs
required/Directory_HC_OPTS += -monly-3-regs
concurrent/Parallel_HC_OPTS += -fglasgow-exts
required/Time_HC_OPTS += -monly-3-regs
required/Time_HC_OPTS += -monly-3-regs -H10m
# Far too much heap is needed to compile PrelNum with -O at the
# moment, but there you go..
ghc/PrelNum_HC_OPTS += -H30m
ghc/PrelBase_HC_OPTS += -H8m
ghc/PrelRead_HC_OPTS += -H8m
ghc/IOHandle_HC_OPTS += -H8m
#-----------------------------------------------------------------------------
# Dependency generation
......
......@@ -338,11 +338,20 @@ void cvtErrno(STG_NO_ARGS)
ghc_errno = GHC_ENOTDIR;
break;
#endif
#ifndef aix_TARGET_OS
/* AIX returns EEXIST where 4.3BSD used ENOTEMPTY.
* there is an ENOTEMPTY defined as the same as EEXIST, and
* therefore it won't work properly on a case statement.
* another option is to define _ALL_SOURCE for aix, which
* gives a different number for ENOTEMPTY.
* I haven't tried that. -- andre.
*/
#ifdef ENOTEMPTY
case ENOTEMPTY:
ghc_errno = GHC_ENOTEMPTY;
break;
#endif
#endif
#ifdef ENOTSOCK
case ENOTSOCK:
ghc_errno = GHC_ENOTSOCK;
......
......@@ -5,7 +5,9 @@
\begin{code}
#ifndef _AIX
#define NON_POSIX_SOURCE /*needed for solaris2 only?*/
#endif
/* how is this to work given we have not read platform.h yet? */
#ifdef hpux_TARGET_OS
......
......@@ -5,7 +5,9 @@
\begin{code}
#ifndef _AIX
#define NON_POSIX_SOURCE /* gettimeofday */
#endif
#include "rtsdefs.h"
#include "stgio.h"
......
......@@ -6,7 +6,10 @@
\begin{code}
/* select and supporting types is not */
#ifndef _AIX
#define NON_POSIX_SOURCE
#endif
#include "rtsdefs.h"
#include "stgio.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment