bugGNU Common Lisp - Bugs: bug #15665, my_sbrk hack in config.h and...

 
 

bug #15665: my_sbrk hack in config.h and o/plt.h (MacOS X 10.4)

Submitter:  None
Submitted:  Wed 08 Feb 2006 09:28:34 PM UTC
   
 
Category:  None Severity:  3 - Normal
Item Group:  None Status:  Fixed
Privacy:  Public Assigned to:  None
Open/Closed:  Closed
* Mandatory Fields

Add a New Comment Rich Markup
   

Thu 21 Nov 2013 10:04:56 PM UTC, comment #1: 

Thanks for your report!  Full macosx support in latest release, 2.6.10.

Camm Maguire <camm>
Group administrator
Wed 08 Feb 2006 09:28:34 PM UTC, original submission:  

GCL 2.6.7 compilation bombed on MacOS X 10.4
in h/config.h:

#define sbrk my_sbrk
extern char *my_sbrk(int incr)

because later on <unistd.h> got included and
attempted to specify a proto type for sbrk().

Work around:

#include <unistd.h> /* to get sbrk defined and unistd.h won't be included anymore */
extern char *my_sbrk(int incr);
#define sbrk my_sbrk

After this the compilation proceeded for a while and  then
bombed on o/plt.h:

MY_PLT(_getc),
MY_PLT(_putc),
MY_PLT(_setjmp)

The compiler whined that _getc,  _putc were
not defined. Should those underscores be there? At least
GCL compiled when I removed  those. (don't know if it works yet though)

Anonymous

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach Files:
   
   
Comment:
   

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by camm (Posted a comment)
  •  

    There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

    Only logged-in users can vote.

     

    Follow 2 latest changes.

    Date Changed by Updated Field Previous Value => Replaced by
    2013-11-21 camm StatusNone Fixed
        Open/ClosedOpen Closed

    Back to the top

    Powered by Savane 3.13-758e.
    Corresponding source code