[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: problems compiling clisp on rs6000
- To: clisp-list@ma2s2.mathematik.uni-karlsruhe.de, haible@ma2s2.mathematik.uni-karlsruhe.de
- Subject: Re: problems compiling clisp on rs6000
- From: haible (Bruno Haible)
- Date: Wed, 10 May 95 19:20:51 +0200
> foreign.d: In function `foreign_layout':
> foreign.d:602: `sint64' undeclared (first use this function)
Oops. To fix this, put
#ifdef HAVE_LONGLONG
...
#endif
wrappers around each piece of code in foreign.d which references a `sint64'
or `unit64' type.
Bruno