Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact
Show
Ignore:
Timestamp:
02/19/09 07:06:27 (3 years ago)
Author:
larsivi
Message:

Various changes to accomodate the default Posix version in new DMDs - briefly tested for both DMD and GDC, fixes #1481

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/gc/stub/posix.mak

    r2863 r4325  
    2020ADD_CFLAGS= 
    2121ADD_DFLAGS= 
     22SYSTEM_VERSION= 
    2223 
    2324CFLAGS=-O -m32 $(ADD_CFLAGS) 
     
    2627### warnings disabled because gcx has issues ### 
    2728 
    28 DFLAGS=-release -O -inline -version=Posix $(ADD_DFLAGS) 
     29DFLAGS=-release -O -inline $(SYSTEM_VERSION) $(ADD_DFLAGS) 
    2930#DFLAGS=-g -version=Posix $(ADD_DFLAGS) 
    3031 
    31 TFLAGS=-O -inline -version=Posix $(ADD_DFLAGS) 
     32TFLAGS=-O -inline $(SYSTEM_VERSION) $(ADD_DFLAGS) 
    3233#TFLAGS=-g -version=Posix $(ADD_DFLAGS) 
    3334 
    34 DOCFLAGS=-version=DDoc -version=Posix 
     35DOCFLAGS=-version=DDoc $(SYSTEM_VERSION)  
    3536 
    3637CC=gcc