Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
Update build_tarballs.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-pablo-vielma authored Aug 16, 2018
1 parent 7edff89 commit 6b5bc8a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,16 @@ cd $WORKSPACE/srcdir
cd ecos-2.0.6/
make shared
mkdir $prefix/lib
cp libecos.so $prefix/lib
cp libecos.dll $prefix/lib
cp libecos.dylib $prefix/lib
if [[ $target = *"w64"* ]]; then
cp libecos.dll $prefix/lib
fi
if [[ $target = *"linux"* ]] || [[ $target = *"freebsd"* ]]; then
cp libecos.so $prefix/lib;
fi
if [[ $target = *"apple"* ]]; then
cp libecos.dylib $prefix/lib
fi
"""

# These are the platforms we will build for by default, unless further
Expand Down

0 comments on commit 6b5bc8a

Please sign in to comment.