Hello, Florian,
After I downloaded toolbox-2.0.1, then I started to configure it, I found the following error:
***
Running HiggsSignals configure...
***
running configure script...
* * *
Reminder: You must enter manually the correct path to HiggsBounds in the
configure script. Also, you may need/wish to change the fortran compiler used.
The default is gfortran.
* * *
finished configure script
configure:
***
HiggsSignals configure finished...
***
configure: Configuring HiggsSignals...
/bin/sed: can't read : No such file or directory
By the way:
I have manually modify the correct path to HiggsBounds in the HiggsSignals' configure script. And still get this error.
Thanks!
Error about toolbox 2.0.1
Re: Error about toolbox 2.0.1
Hi,
If this is indeed the problem, you should find instructions how to install sed on your system.
Cheers,
Florian
it seems to me that you have not installed sed on your machine which is used by the configure script. sed should be installed by default on all Linux machines, and I thought that it is also available on a Mac out-of-the-box. However, I never used it on a Mac, I have to admit.configure: Configuring HiggsSignals...
/bin/sed: can't read : No such file or directory
If this is indeed the problem, you should find instructions how to install sed on your system.
Cheers,
Florian
-
chuangli
Re: Error about toolbox 2.0.1
Thanks for your reply!
I am sure I have sed installed. But there still is this error.
I am sure I have sed installed. But there still is this error.
Re: Error about toolbox 2.0.1
Ok, that's strange. Does the configure script run throught when you remove these lines (4840f):
Cheers,
Florian
Code: Select all
cp -f ./HiggsSignals/makefile ./HiggsSignals/Makefile.old || exit 1
$SED "s/^F90C =.*/F90C = $FC/;s/^F77C =.*/F77C = $FC/;s/^F90FLAGS =.*/F90FLAGS = $FCFLAGS/;s/^default:.*/default: HiggsSignals/" \
< ./HiggsSignals/Makefile.old > ./HiggsSignals/makefile || exit 1
cp -f ./HiggsSignals/makefile ./HiggsSignals/Makefile.old || exit 1
$SED "s/^HBLIBS =.*/HBLIBS = -L\.\.\/HiggsBounds-$vHB/;s/^HBINCLUDE =.*/HBINCLUDE = -I\.\.\/HiggsBounds-$vHB/" \ \
< ./HiggsSignals/Makefile.old > ./HiggsSignals/makefile || exit 1
Florian