Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 913

Show
Ignore:
Timestamp:
10/19/06 14:37:45 (2 years ago)
Author:
Gregor
Message:

dsss.conf: Slightly cleaner exclusion.

lib/compiler/gdc/aApplyR.d: Actually compiles on GDC.

phobos/string.d: Compile on GDC.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dsss.conf

    r894 r913  
    3737 
    3838[tango/sys] 
    39 version (linux) { 
    40     exclude = tango/sys/darwin/* tango/sys/windows/* 
    41 } else version (darwin) { 
    42     exclude = tango/sys/linux/* tango/sys/windows/* 
    43 } else version (Windows) { 
    44     exclude = tango/sys/linux/* tango/sys/darwin/* 
     39version (!linux) { 
     40    exclude += tango/sys/linux/* 
     41
     42version (!darwin) { 
     43    exclude += tango/sys/darwin/* 
     44
     45version (!Windows) { 
     46    exclude += tango/sys/windows/* 
    4547} 
    4648 
     
    5052# Needs to be separated due to two Format.d's 
    5153 
     54[phobos] 
     55# Target = D-tango-phobos or G-tango-phobos 
     56version (DigitalMars) { 
     57    target = D-tango-phobos 
     58} else version (GNU) { 
     59    target = G-tango-phobos 
     60} 
     61 
     62version (!Windows) { 
     63    exclude += phobos/windows/* 
     64} 
     65exclude += phobos/etc/gamma.d phobos/etc/c/zlib.d phobos/cover.d phobos/boxer.d 
     66 
     67[phobos/c] 
     68# Needs to be separated because of similarly named files 
     69version (DigitalMars) { 
     70    target = D-tango-phobos-c 
     71} else version (GNU) { 
     72    target = G-tango-phobos-c 
     73} 
     74 
     75version (!Windows) { 
     76    exclude += phobos/c/windows/* 
     77} 
  • trunk/lib/compiler/gdc/aApplyR.d

    r911 r913  
    7272} 
    7373 
     74/+ 
    7475unittest 
    7576{ 
     
    948949    assert(i == 5); 
    949950} 
    950  
    951  
     951+/ 
     952 
  • trunk/phobos/string.d

    r779 r913  
    34023402bool isNumeric(...) 
    34033403{ 
    3404     return isNumeric(_arguments, _argptr); 
     3404    return isNumeric(_arguments, cast(va_list) _argptr); 
    34053405} 
    34063406