[plt-scheme] Re: Large file support in PLT Scheme

From: Matthew Flatt (mflatt at cs.utah.edu)
Date: Wed Sep 9 08:24:39 EDT 2009

At Fri, 4 Sep 2009 10:56:13 +0000 (UTC), Martin Dirichs wrote:
> So what I was trying was to recompile the PLT Scheme source with some flags:
> 
> cd plt-4.2.1/src
> ./configure CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
>   CXXFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"

Since these flags affect preprocessing, define CPPFLAGS instead:

 ./configure CPPFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"

I will look into adding these flags automatically in `configure'.



Posted on the users mailing list.