summaryrefslogtreecommitdiffhomepage
path: root/chapel.html.markdown
diff options
context:
space:
mode:
authorIan Bertolacci <ian.bertolacci@gmail.com>2015-07-17 10:15:29 -0700
committerIan Bertolacci <ian.bertolacci@gmail.com>2015-07-17 10:15:29 -0700
commit77c4ddb522881b4975bff0e6b34e46566336e266 (patch)
treea6fa4f346ce8cf80ed3e11db478ffcd394082d16 /chapel.html.markdown
parent4ae7b4921979998152c828a2b70576258a1f1468 (diff)
Put lists back in
Pretty sure what was causing the 'back end' error was my bad markdown skills
Diffstat (limited to 'chapel.html.markdown')
-rw-r--r--chapel.html.markdown19
1 files changed, 7 insertions, 12 deletions
diff --git a/chapel.html.markdown b/chapel.html.markdown
index 5a0c3920..c6c4a191 100644
--- a/chapel.html.markdown
+++ b/chapel.html.markdown
@@ -794,26 +794,21 @@ Installing the Compiler
Chapel can be built and installed on your average 'nix machine (and cygwin).
[Download the latest release version](https://github.com/chapel-lang/chapel/releases/)
and its as easy as
-
-`tar -xvf chapel-1.11.0.tar.gz`
-
-`cd chapel-1.11.0`
-
-`make`
-
-`source util/setchplenv.bash # or .sh or .csh or .fish`
+ 1. `tar -xvf chapel-1.11.0.tar.gz`
+ 2. `cd chapel-1.11.0`
+ 3. `make`
+ 4. `source util/setchplenv.bash # or .sh or .csh or .fish`
You will need to `source util/setchplenv.EXT` from the chapel directory every time your terminal starts so its suggested that you drop that command in a script that will get executed on startup (like .bashrc).
Chapel is easily installed with Brew for OS X
-
-`brew update`
-
-`brew install chapel`
+ 1. `brew update`
+ 2. `brew install chapel`
Compiling Code
--------------
Builds like other compilers
+
`chpl myFile.chpl -o myExe`
A notable argument, `--fast` enables a number of optimizations and disables array bounds checks. Should only enable when application is stable.