Skip to content
Snippets Groups Projects
Commit c5cd3a0e authored by Sergey Yakubov's avatar Sergey Yakubov
Browse files

do not install libfabric for manylinux packages

parent 7435dca7
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
apt install -y wget autoconf libtool make librdmacm-dev
apt install -y wget autoconf libtool make librdmacm-dev rdma-core
wget https://github.com/ofiwg/libfabric/archive/v1.11.0.tar.gz
tar xzf v1.11.0.tar.gz
cd libfabric-1.11.0
......
......@@ -10,9 +10,6 @@ RUN ./install_curl.sh /curl
ADD install_cmake.sh install_cmake.sh
RUN ./install_cmake.sh
ADD install_libfabric.sh install_libfabric.sh
RUN ./install_libfabric.sh
RUN chmod og+rwX -R /opt
ADD build.sh /bin/build.sh
\ No newline at end of file
......@@ -6,7 +6,7 @@ for python_path in /opt/python/cp{27,35,36,37}*m; do
pip=$python_path/bin/pip
cd /asapo/build
cmake -DENABLE_LIBFABRIC=on -DCMAKE_BUILD_TYPE="Release" -DLIBCURL_DIR=/curl -DPython_EXECUTABLE=$python ..
cmake -DENABLE_LIBFABRIC=off -DCMAKE_BUILD_TYPE="Release" -DLIBCURL_DIR=/curl -DPython_EXECUTABLE=$python ..
cd consumer \
&& $pip install -r /asapo/consumer/api/python/dev-requirements.txt \
&& make \
......
#!/usr/bin/env bash
apt install -y wget autoconf libtool make librdmacm-dev
wget https://github.com/ofiwg/libfabric/archive/v1.11.0.tar.gz
tar xzf v1.11.0.tar.gz
cd libfabric-1.11.0
./autogen.sh
./configure
make
make install
cd -
rm -rf libfabric-1.11.0
rm v1.11.0.tar.gz
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment