Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use imath-32 in wheels #42

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions wheels/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,13 @@ function pre_build {
export ABI=32
fi
echo "Bundled dependencies in the wheel" >> doc/misc.rst
build_simple2 gmp 6.1.2 https://gmplib.org/download/gmp tar.bz2 \
--enable-shared --disable-static --with-pic --enable-fat
pushd gmp-6.1.2
cat README >> ../doc/misc.rst
cat COPYING.LESSERv3 >> ../doc/misc.rst
echo "" >> ../doc/misc.rst
popd
build_simple2 isl 0.22.1 http://isl.gforge.inria.fr tar.gz \
--enable-shared --disable-static --with-int=gmp --with-gmp-prefix=$BUILD_PREFIX
--enable-shared --disable-static --with-int=imath-32
pushd isl-0.22.1
cat LICENSE >> ../doc/misc.rst
echo "imath license" >> doc/misc.rst
echo "=============" >> doc/misc.rst
head -n 25 imath/imath.h >> ../doc/mis.rst
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
head -n 25 imath/imath.h >> ../doc/mis.rst
head -n 25 imath/imath.h >> ../doc/misc.rst

popd
}

Expand Down