aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-06-10 19:50:19 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-06-10 19:50:19 +0200
commitbdb166ce5e752ba6ba8cf20f3869a7a456b567be (patch)
tree73b0b8bca5a668d5f9b5e5cca627dfd61855454a
parent4a6e6bdabbeb8ae8d9c71370927ef6a15969576e (diff)
Update INSTALL file
-rw-r--r--INSTALL25
1 files changed, 25 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
index 51d628f..9ffa5f4 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,6 +1,31 @@
Setup
=====
+Setting Scripts
+---------------
+
+The "driver" scripts that you will be invoking are cl-NN, lib-NN, and link-NN,
+where NN is the Visual Studio version (e.g., 11, 12, 14, etc). There are also
+the "configuration" scripts, msvc-NN, which provide the Visual Studio/SDK
+location and configuration (in a way similar to vcvars32.bat). There is also a
+bunch of other helper scripts that you will not need to modify or invoke
+directly.
+
+All of these scripts should reside in the same directory. In particular, you
+cannot copy, say, cl-NN to /usr/local/bin/ while leaving the rest in some
+other directory -- this will not work. What you can do, however, is create
+symlinks to the driver scripts in /usr/local/bin/ -- this will work.
+
+If you only need to make the scripts usable by a single user, then the easiest
+approach is to add the script's directory to your PATH in, say, .bashrc, for
+example:
+
+export PATH=$HOME/msvc-linux:$PATH
+
+Alternatively, if you have something like ~/bin/ that is already in PATH, then
+you can simply add symlinks to the scripts.
+
+
Install Wine
------------