This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake \ | |
-DCMAKE_BUILD_TYPE=Debug \ | |
-DCMAKE_PREFIX_PATH=/.../install/flecsi-third-party \ | |
-DENABLE_UNIT_TESTS=On \ | |
-DCMAKE_INSTALL_PREFIX=$INSTALL_PATH \ | |
-DENABLE_PARMETIS=On \ | |
-DENABLE_METIS=On \ | |
-DENABLE_COLORING=On \ | |
-DFLECSI_RUNTIME_MODEL=hpx \ | |
-DENABLE_DEVEL_TARGETS=On \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake \ | |
-DBUILD_SHARED_LIBS=ON \ | |
-DCMAKE_BUILD_TYPE=Debug \ | |
-DCMAKE_INSTALL_PREFIX=$INSTALL_PATH \ | |
-DENABLE_CALIPER=ON \ | |
-DENABLE_CINCH_UTILS=ON \ | |
-DENABLE_EXODUS=OFF \ | |
-DENABLE_GASNET=ON \ | |
-DENABLE_HDF5=ON \ | |
-DENABLE_HPX=ON \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/usr/bin/ld: cannot find -lhpx_init | |
/usr/bin/ld: cannot find -lhpx | |
collect2: error: ld returned 1 exit status | |
make[2]: *** [CMakeFiles/driver.dir/build.make:126: driver] Error 1 | |
make[1]: *** [CMakeFiles/Makefile2:73: CMakeFiles/driver.dir/all] Error 2 | |
make: *** [Makefile:130: all] Error 2 | |
/usr/bin/ld: cannot find -lhpx_init | |
/usr/bin/ld: cannot find -lhpx | |
collect2: error: ld returned 1 exit status | |
make[2]: *** [CMakeFiles/driver.dir/build.make:126: driver] Error 1 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -x | |
_RDIR_=$PWD | |
mkdir blaze | |
pushd blaze | |
git clone --depth=1 https://bitbucket.org/blaze-lib/blaze.git repo | |
mkdir -p {build,install} | |
pushd build | |
cmake -DCMAKE_INSTALL_PREFIX=$_RDIR_/install -DBOOST_ROOT=/opt/boost/1.65-gcc-7.2.0/ -DBLAZE_SMP_THREADS=C++11 ../repo | |
make -j |
NewerOlder