Page 1 of 1

Error about toolbox 2.0.1

Posted: 25. Apr 2016, 11:51
by chuangli
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!

Re: Error about toolbox 2.0.1

Posted: 25. Apr 2016, 13:30
by FStaub
Hi,
configure: Configuring HiggsSignals...
/bin/sed: can't read : No such file or directory
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.
If this is indeed the problem, you should find instructions how to install sed on your system.

Cheers,
Florian

Re: Error about toolbox 2.0.1

Posted: 25. Apr 2016, 14:27
by chuangli
Thanks for your reply!
I am sure I have sed installed. But there still is this error.

Re: Error about toolbox 2.0.1

Posted: 25. Apr 2016, 15:16
by FStaub
Ok, that's strange. Does the configure script run throught when you remove these lines (4840f):

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    
Cheers,
Florian

Re: Error about toolbox 2.0.1

Posted: 21. Jul 2016, 23:39
by chuangli
Thanks a lot!
It works!