diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-05 19:01:29 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-05 19:01:29 +0200 |
commit | b93dd779658d6b877d0ed51c2b0fe5cd3edc0ff4 (patch) | |
tree | 64ea54794f7c9c4b1e7677eefe389a9a120ba91c | |
parent | e6646e5cb805c60d189936a1d204a66edce2112a (diff) |
Improve INSTALL file based on FreeBSD experience
-rw-r--r-- | INSTALL | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -25,6 +25,9 @@ adjustments to the commands below. $ sudo yum install sqlite-devel + For FreeBSD: + + # pkg install sqlite3 2. Installing libodb and libodb-sqlite @@ -46,7 +49,9 @@ adjustments to the commands below. $ make $ sudo make install - See the INSTALL file for each library for more information. + On some platforms you may have to add CPPFLAGS=-I/usr/local/include and + LDFLAGS=-L/usr/local/lib configure command line variables. See the INSTALL + file for each library for more information. 3. Bootstrapping build2 @@ -59,13 +64,15 @@ adjustments to the commands below. $ ./build/b-boot update For more information on this step (for example, how to specify a C++ - compiler, etc) refer to the INSTALL file in the build2/ subdirectory. + compiler, etc.) refer to the INSTALL file in the build2/ subdirectory. 4. Configuring, building, and installing the rest of the toolchain $ cd .. # back to build2-toolchain-X.Y.Z - $ ./build2/build/b config.cxx.loptions=-L/usr/local/lib \ + $ ./build2/build/b \ + config.cxx.poptions=-I/usr/local/include \ + config.cxx.loptions=-L/usr/local/lib \ config.install.root=/usr/local configure $ ./build2/build/b update $ sudo ./build2/build/b install |