Skip to content

Commit

Permalink
Correct READMEs for version and Windows support.
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurp committed Aug 25, 2016
1 parent e321d4b commit f30f555
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion OrcSites/README
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ when running Orc. Because of some weirdness with the classloader, you
should not run Orc with the "-jar" option. Instead, run programs
with the orc.Main class, for example:

java -cp <path-to-Orc>/orc-2.1.0.jar:<path-to-Orc>/lib/\*:orc-sites-2.1.0.jar:lib/\* orc.Main examples/eliza.orc
java -cp <path-to-Orc>/orc-2.9.0-M1.jar:<path-to-Orc>/lib/\*:orc-sites-2.9.0-M1.jar:lib/\* orc.Main examples/eliza.orc


--
Expand Down
15 changes: 9 additions & 6 deletions OrcSites/README-combined
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ here, in the "lib" directory.
Orc can be used as a command line Java application (see USING ORC below).

There are numerous examples of Orc programs included in the "examples"
directory.
directory.

See https://orc.csres.utexas.edu/ for more information about Orc,
including the language user's guide, discussion groups, a wiki, and more.
See https://orc.csres.utexas.edu/ for more information about Orc.

See the files LICENSE and licenses.yml for license agreements. See
licenses.yml for information on bundled third-party libraries and code.
Expand All @@ -31,8 +30,12 @@ USING ORC
To run Orc programs invoke the class orc.Main with all the included JARs
on the class path.

java -cp orc-2.1.0.jar:orc-sites-2.1.0.jar:lib/\* orc.Main examples/orco_paper/sec5-1_event_handling.orc
On Unix-like systems (tested on Linux and Mac OS X):
java -cp orc-2.9.0-M1.jar:orc-sites-2.9.0-M1.jar:lib/\* orc.Main examples/orco_paper/sec5-1_event_handling.orc

On Windows:
java -cp orc-2.9.0-M1.jar;orc-site-2.9.0-M1.jar;lib\* orc.Main examples\orco_paper\sec5-4_composing_objects.orc

--
[$Id$]
(On Windows, there is a known issue which prevents
examples\orco_paper\sec5-1_event_handling.orc from loading. It does work
propertly on Unix-like platforms.)

0 comments on commit f30f555

Please sign in to comment.