Skip to content

Commit

Permalink
additional readme and comment notes
Browse files Browse the repository at this point in the history
  • Loading branch information
tkelman committed Mar 6, 2018
1 parent fb9274a commit 2f02445
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -13,8 +13,9 @@ Ipopt.jl

This will install Ipopt.jl, as well as Ipopt itself. A binary will be downloaded
by default on macOS or Windows, and Ipopt will be automatically built from source
on Linux. If your platform is not supported, or if you prefer to compile your own
version of Ipopt in order to use commercial sparse linear algebra libraries, use
on Linux unless a pre-existing version is found on the `LD_LIBRARY_PATH`.
If your platform is not supported, or if you prefer to compile your own version
of Ipopt in order to use commercial sparse linear algebra libraries, use
the instructions below.

**Custom Installation**:
Expand Down
5 changes: 5 additions & 0 deletions deps/build.jl
Expand Up @@ -2,6 +2,11 @@ using BinaryProvider
using BinDeps
using Compat

# BinaryBuilder artifacts for linux currently assume libgfortran.so.4
# is present, so they will not work for any source builds of Julia itself
# when a GCC version older than 7 was used. BinaryBuilder also does not
# support FreeBSD or non-glibc Linux distributions. Continue building from
# source on non-apple unices while these limitations apply.
use_BinaryProvider = Compat.Sys.isapple() || Compat.Sys.iswindows()

@BinDeps.setup
Expand Down

0 comments on commit 2f02445

Please sign in to comment.