Skip to content

Instantly share code, notes, and snippets.

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 \
@rtohid
rtohid / gist:d4772ad4753982a0e8b97bf50a412055
Created August 10, 2018 20:12
flecsi-third-part config
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 \
/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.
@rtohid
rtohid / bootstrap.sh
Last active October 27, 2017 23:25 — forked from parsa/.gitignore
#!/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