parrotcode: Untitled | |
Contents | Language Implementations | .Net |
This document describes the process of building the .NET CLI to PIR translator.
To build the translator you will need the following:-
Enter the source directory for the translator and run Configure.pl, passing it the path to your built Parrot source tree.
perl Configure.pl --parrot ../parrot
This will generate a makefile. To build the translator using the makefile, type the name of the make program for your platform, which will likely be one of the following:
make
Or
nmake
Run the regression tests like this:
make test
Replacing make with the name of your make program, as used when building.
|