Skip to content

Commit

Permalink
Remove references to --with-boost-lib
Browse files Browse the repository at this point in the history
That flag was removed in v1.29 (lballabio/QuantLib@7258eb18).
  • Loading branch information
ryandesign authored and lballabio committed Jan 26, 2024
1 parent f06b350 commit 573555a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions install/linux.shtml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ location other than the default (<code>/usr/local</code>).</p>
<p>This is also the step where you might have to
tell <code>configure</code> about the location of your Boost
installation, if that's not a standard one. If, for instance, you
installed the Boost headers in <code>/home/foo/include</code>
and the libraries in <code>/home/foo/lib</code>, execute:</p>
installed the Boost headers in <code>/home/foo/include</code>,
execute:</p>
<pre>
./configure --with-boost-include=/home/foo/include --with-boost-lib=/home/foo/lib
./configure --with-boost-include=/home/foo/include
</pre>
<p>to setup the build correctly. Finally,</p>
<pre>
Expand Down
3 changes: 0 additions & 3 deletions install/macosx.shtml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ need to pass additional environment variables to <tt>./configure</tt>
(thanks to Albert Azout for pointing it out). Run:
<pre>
./configure --with-boost-include=/opt/homebrew/include/ \
--with-boost-lib=/opt/homebrew/lib/ \
--prefix=${HOME}/local/ \
CXXFLAGS='-O2 -stdlib=libc++ -mmacosx-version-min=10.9' \
LDFLAGS='-stdlib=libc++ -mmacosx-version-min=10.9'
Expand All @@ -75,7 +74,6 @@ versions don't need it.
you'll need to pass different environment variables. Run:
<pre>
./configure --with-boost-include=/usr/local/include/ \
--with-boost-lib=/usr/local/lib/ \
--prefix=${HOME}/local/ \
CXXFLAGS='-O2 -stdlib=libstdc++ -mmacosx-version-min=10.6' \
LDFLAGS='-stdlib=libstdc++ -mmacosx-version-min=10.6'
Expand All @@ -87,7 +85,6 @@ and change your paths as needed.
most environment variables, so the command can be simplified to:
<pre>
./configure --with-boost-include=/usr/local/include/ \
--with-boost-lib=/usr/local/lib/ \
--prefix=${HOME}/local/ \
CXXFLAGS='-O2'
</pre>
Expand Down

0 comments on commit 573555a

Please sign in to comment.