summaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
authorInari Listenmaa <inari.listenmaa@gmail.com>2021-07-15 05:16:55 +0200
committerGitHub <noreply@github.com>2021-07-15 05:16:55 +0200
commit66ae31e99e31c86172bcc31e36d4f9441fde8634 (patch)
treea9af9c3fc4ae4ed8b874086fdf99f25d816774e5 /src/runtime
parenta1fd3ea142f215d7a030b8a95d32ba0c55dd61fb (diff)
parenta677f0373c2b02c009028a9e9dd8341a80b499e0 (diff)
Merge pull request #126 from inariksit/developers-documentation
Update developers' documentation
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/c/INSTALL7
-rwxr-xr-xsrc/runtime/c/install.sh3
2 files changed, 8 insertions, 2 deletions
diff --git a/src/runtime/c/INSTALL b/src/runtime/c/INSTALL
index 6bbaefdce..c45c18fa9 100644
--- a/src/runtime/c/INSTALL
+++ b/src/runtime/c/INSTALL
@@ -14,6 +14,9 @@ For Linux users
You will need the packages: autoconf, automake, libtool, make
+- On Ubuntu: $ apt-get install autotools-dev
+- On Fedora: $ dnf install autoconf automake libtool
+
The compilation steps are:
$ autoreconf -i
@@ -28,7 +31,7 @@ For Mac OSX users
The following is what I did to make it work on MacOSX 10.8:
- Install XCode and XCode command line tools
-- Install Homebrew: http://mxcl.github.com/homebrew/
+- Install Homebrew: https://brew.sh
$ brew install automake autoconf libtool
$ glibtoolize
@@ -49,7 +52,7 @@ For Windows users
After the installation, don't forget to fix the fstab file. See here:
http://www.mingw.org/wiki/Getting_Started
-- From the MSYS shell (c:/MinGW/msys/1.0/msys.bat) go to the directory
+- From the MSYS shell (c:/MinGW/msys/1.0/msys.bat) go to the directory
which contains the INSTALL file and do:
$ autoreconf -i
diff --git a/src/runtime/c/install.sh b/src/runtime/c/install.sh
new file mode 100755
index 000000000..78483719d
--- /dev/null
+++ b/src/runtime/c/install.sh
@@ -0,0 +1,3 @@
+bash setup.sh configure
+bash setup.sh build
+bash setup.sh install