aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-10-24 09:12:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-10-24 09:12:02 +0200
commitd5830f6a44c257f26f43bc964e7af07c238bae61 (patch)
treeb0bf28822829bcd8db218d12f014bfe14256608a
parentf03ba1eab6ed35099f55ed13b8813498e9704200 (diff)
Mention C compiler now that we have .c files
-rw-r--r--INSTALL12
1 files changed, 6 insertions, 6 deletions
diff --git a/INSTALL b/INSTALL
index 3e8be4d..9660539 100644
--- a/INSTALL
+++ b/INSTALL
@@ -15,10 +15,10 @@ To see the available configuration options run configure with --help:
./configure --help
As an example, the following configure command only builds shared libraries,
-uses the specified C++ compiler, and compiles with optimization and without
-debug information:
+uses the specified C and C++ compilers, and compiles with optimization and
+without debug information:
-./configure --disable-static CXX=g++-4.5 CXXFLAGS=-O3
+./configure --disable-static CC=gcc-4.5 CXX=g++-4.5 CFLAGS=-O3 CXXFLAGS=-O3
Once configuration is complete, run make to build libcutl:
@@ -46,7 +46,7 @@ you are using. Once the solution is open, select the desired build
configuration (Debug or Release) and platform (Win32 or x64) and build
the solution.
-The resulting 32-bit DLLs and import libraries are placed into the
+The resulting 32-bit DLLs and import libraries are placed into the
libcutl\bin\ and libcutl\lib\ directories, respectively. Similarly, the
64-bit DLLs and import libraries are placed into libcutl\bin64\ and
libcutl\lib64\. The Release versions of the import libraries are named
@@ -60,10 +60,10 @@ Win32:
Include: ...\libcutl
Library: ...\libcutl\lib
- Executable: ...\libcutl\bin
+ Executable: ...\libcutl\bin
x64:
Include: ...\libcutl
Library: ...\libcutl\lib64
- Executable: ...\libcutl\bin64
+ Executable: ...\libcutl\bin64