Commit a9bccc48 authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Update build helper to fix FMT-issue

parent 1ca8553e
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
# file build_helper.amf # file build_helper.amf
# brief # brief
# author Laurent Thomas, Lionel GAUTHIER
# #
####################################### #######################################
################################ ################################
...@@ -97,6 +98,8 @@ install_fmt() { ...@@ -97,6 +98,8 @@ install_fmt() {
git clone https://github.com/fmtlib/fmt.git git clone https://github.com/fmtlib/fmt.git
ret=$?;[[ $ret -ne 0 ]] && return $ret ret=$?;[[ $ret -ne 0 ]] && return $ret
cd fmt cd fmt
# Looks like since Nov 11 commits, we cannot build
git checkout -f 1936dddc3c53c1c0db55a665cf419dc7a257ba62
$CMAKE -DFMT_TEST=FALSE . $CMAKE -DFMT_TEST=FALSE .
ret=$?;[[ $ret -ne 0 ]] && return $ret ret=$?;[[ $ret -ne 0 ]] && return $ret
make -j `nproc` make -j `nproc`
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment