aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJov <amutu@amutu.com>2013-03-25 22:51:52 +0800
committerJov <amutu@amutu.com>2013-03-25 22:51:52 +0800
commit0de6fe6c41627c11b4ba0569fe28e861cfc8225b (patch)
treed2b7119a6a91db035227240d300efbfbeead09b5
parentc68af2db9d497fd8229162bc23b9679fc2e1fc8b (diff)
downloadtinycc-0de6fe6c41627c11b4ba0569fe28e861cfc8225b.tar.gz
tinycc-0de6fe6c41627c11b4ba0569fe28e861cfc8225b.tar.bz2
Update README,add x86_64/arm,FreeBSD/OSX etc.
Change make to gmake because make will not be gnu make in some OS like FreeBSD
-rw-r--r--README15
1 files changed, 8 insertions, 7 deletions
diff --git a/README b/README
index 43e6c3b..cfec3e9 100644
--- a/README
+++ b/README
@@ -28,12 +28,12 @@ Features:
Documentation:
-------------
-1) Installation on a i386 Linux host (for Windows read tcc-win32.txt)
+1) Installation on a i386/x86_64/arm Linux/OSX/FreeBSD host (for Windows read tcc-win32.txt)
./configure
- make
- make test
- make install
+ gmake
+ gmake test
+ gmake install
Alternatively, out-of-tree builds are supported: you may use different
directories to hold build objects, kept separate from your source tree:
@@ -41,10 +41,11 @@ directories to hold build objects, kept separate from your source tree:
mkdir _build
cd _build
../configure
- make
- make test
- make install
+ gmake
+ gmake test
+ gmake install
+Texi2html must be installed to compile the doc.
By default, tcc is installed in /usr/local/bin.
./configure --help shows configuration options.