Downloads
You can download the X10 1.7.1 release from our X10 downloads page on sourceforge. Direct links to the individual components of the 1.7.1 release are provided below.
- X10 1.7 Language Specification
- x10-171-src.zip - X10 1.7.1 distribution
- x10-171.zip - X10 1.7.1 sources
- x10-171-testsuite.zip - X10 1.7.1 test suite (also part of the sources)
- X10 1.7.1 Release Notes
Instructions
- Download x10-171.zip
- Unzip x10-171.zip into some directory (e.g., x10dist)
- Now, you should be able to run the X10 compiler:
x10dist/bin/x10c Main.x10
- And then invoke the X10 program:
x10dist/bin/x10 Main
- See x10dist/INSTALL for more information
Test suite download instructions
- The X10 test suite is distributed separately
- Download x10-171-testsuite.zip
- Unzip x10-171-testsuite.zip into the same directory as x10-171.zip (e.g., x10dist)
- Now, you should be able to run the X10 test suite:
cd x10dist/examples ../bin/testScript
- See x10dist/TESTS-README for more information
Source Build Instructions
- Download x10-171.-src.zip
- Unzip x10-171-src.zip
- This will create the following directories: x10.dist, x10.compiler.p3, x10.constraints, x10.runtime.17, and x10.tests
- Run:
cd x10.dist ant
- Now, you should be able to run the X10 compiler:
x10.dist/bin/x10c Main.x10
- And then invoke the X10 program:
x10.dist/bin/x10 Main
- See x10.dist/README for more information
Running the test suite from a source distribution
- After unzipping the source zip, you should be able to run the X10 test suite:
cd x10.tests/examples ../bin/testScript
- See x10.tests/README for more information