Changeset 13711 for INSTALL

Show
Ignore:
Timestamp:
09/28/06 16:55:34 (2 years ago)
Author:
audreyt
Message:

* INSTALL: Update Jonathan's bindist URL (thanks to vel++),

and update some make targets too.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • INSTALL

    r13514 r13711  
    1515          Devel::Caller Module::Compile Pugs::Compiler::Rule 
    1616 
    17 http://www.jwcs.net/~jonathan/perl6/ and http://pxperl.com/ both have  
    18 binary builds for Win32, and http://www.unobe.com/packages/ has binary 
    19 builds for Mac OS X on PowerPC.  If you'd like to build Pugs by hand, 
    20 http://wiki.kn.vutbr.cz/mj/?Perl%206%20and%20Parrot has some instructions. 
     17http://jnthn.net/perl6/ has binary builds for Win32.  For Mac OS X (PowerPC), 
     18http://www.unobe.com/packages/ has binary builds too. If you'd like to build 
     19Pugs by hand, http://wiki.kn.vutbr.cz/mj/?Perl%206%20and%20Parrot has some 
     20instructions. 
    2121 
    2222For dynamic loading/inlining of Haskell modules, you should install the 
     
    7979be slower to compile, but will run much faster. To disable this, run: 
    8080     
    81     make unoptimized  # unoptimised will work, too. We're not picky. 
     81    make fast 
    8282 
    83 To run the test suite: 
    84  
    85     make test 
    86  
    87 To make a pretty HTML matrix showing test results: 
     83To run the test suite with a pretty HTML matrix showing test results: 
    8884 
    8985    make smoke 
    90      
    91 To run the test suite using the PIR backend: 
    92      
    93     make pirtest 
    94      
    95 To make a pretty HTML matrix showing test results using the PIR backend: 
    96  
    97     make pirsmoke 
    9886 
    9987To turn on profiling in the GHC compiler: 
    10088  
    101     make profiled 
     89    make prof 
     90 
     91To hack on Pugs using the GHC interactive shell: 
     92 
     93    make ghci 
    10294 
    10395BUILD CONFIGURATION CONSOLIDATION VIA config.yml 
     
    143135[1] See <http://yaml.org/>. Only a subset of the YAML syntax is permitted 
    144136at the moment, to avoid a dependency on the full parser. 
    145  
    146 CAVEATS FOR Win32 USERS 
    147 ------------------------- 
    148  
    149 Embedding Perl5 is disabled GHC is built with MinGW/GCC and Perl  
    150 is usually built with VC++, they cannot embed one another.