The "win" exe is an installer with pre-compiled programs. The "src" zip file contains sources for all platforms: see "Building From Sources" below.
Testing:
This will run the init.srp in lib, which is a good simple test.serpent64
> print "hello world"
hello world
> exit()
to test wxserpent64 and see a variety of input controls. The screen will look something like this:wxserpent64 wxs_test.srp
Important: If your serpent directory contains trunk, tags, and branches, check the code above and try again. For these instructions to work, all the repository files in trunk must be copied to the local working copy named serpent. E.g. you should have serpent/README.txt, serpent/32bit, and serpent/64bit. If you install liblo, for example, you should have liblo in the parent directory of serpent, i.e. it will be serpent/../liblo.svn checkout svn://svn.code.sf.net/p/serpent/code/trunk serpentor, if you are a developer and plan to commit changes back to SourceForge,
svn checkout svn+ssh://rbd@svn.code.sf.net/p/serpent/code/trunk serpent
libraries.txt
: To find
all these libraries you’ve been creating, Serpent uses
libraries.txt
. The content of this file depends on
your computer, so libraries.txt
is not in the
source code. However,
serpent/64bit/libraries-example.txt
is in the
sources as a template.serpent/64bit/libraries-example.txt
to
serpent/64bit/libraries.txt
.serpent/64bit/libraries.txt
, making sure all
the library paths and names are valid for your computer.
v3.1.2
or 3.1
or
v312
. Only 31
will work
(or 32
if you have version 3.2.x, etc.).
print
statements). WXS_STDOUT_WINDOW should be ON so that you
can get output when debugging under Visual Studio, which will
not show console output. On the other hand, if you run Arco
programs from a command prompt, you will always get
text output in the command prompt window, which makes the
WXS_STDOUT_WINDOW display redundant, in which case OFF
is a reasonable choice.