Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
jberryman
GHC
Commits
424774f4
Commit
424774f4
authored
May 30, 2003
by
simonmar
Browse files
[project @ 2003-05-30 09:06:24 by simonmar]
merge rev. 1.119.2.1: Couple of extra local syms needed when using mingw2
parent
2c5ba8ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/rts/Linker.c
View file @
424774f4
/* -----------------------------------------------------------------------------
/* -----------------------------------------------------------------------------
* $Id: Linker.c,v 1.1
19
2003/0
4/29 21:37:31 wolfgang
Exp $
* $Id: Linker.c,v 1.1
20
2003/0
5/30 09:06:24 simonmar
Exp $
*
*
* (c) The GHC Team, 2000-2003
* (c) The GHC Team, 2000-2003
*
*
...
@@ -214,6 +214,15 @@ typedef struct _RtsSymbolVal {
...
@@ -214,6 +214,15 @@ typedef struct _RtsSymbolVal {
#define RTS_POSIX_ONLY_SYMBOLS
/**/
#define RTS_POSIX_ONLY_SYMBOLS
/**/
#define RTS_CYGWIN_ONLY_SYMBOLS
/**/
#define RTS_CYGWIN_ONLY_SYMBOLS
/**/
/* Extra syms gen'ed by mingw-2's gcc-3.2: */
#if __GNUC__>=3
#define RTS_MINGW_EXTRA_SYMS \
Sym(_imp____mb_cur_max) \
Sym(_imp___pctype)
#else
#define RTS_MINGW_EXTRA_SYMS
#endif
/* These are statically linked from the mingw libraries into the ghc
/* These are statically linked from the mingw libraries into the ghc
executable, so we have to employ this hack. */
executable, so we have to employ this hack. */
#define RTS_MINGW_ONLY_SYMBOLS \
#define RTS_MINGW_ONLY_SYMBOLS \
...
@@ -278,6 +287,7 @@ typedef struct _RtsSymbolVal {
...
@@ -278,6 +287,7 @@ typedef struct _RtsSymbolVal {
Sym(opendir) \
Sym(opendir) \
Sym(readdir) \
Sym(readdir) \
Sym(rewinddir) \
Sym(rewinddir) \
RTS_MINGW_EXTRA_SYMS \
Sym(closedir)
Sym(closedir)
#endif
#endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment