|
|
HYPHY Source Compilation Notes.
|
GCC 3.0 and above on some platforms: add '-fpermissive' to the compiler string in build.sh, if the compiler reports
type conversion errors starting at batchlan.cpp
|
|
Type error in strings.cpp (SunOS and Tru64 with CXX): on line 1640, replace
utsname name;
with
struct utsname name;
Thanks to Ben Evans for this suggestion.
|
|
LValue errors in parser2.cpp. CXX on Tru64 for Alpha: on line 302, replace
res->theFormula && &_Operation tempOp (new _Constant (0.0));
with
_Operation tempOp (new _Constant (0.0));
res->theFormula && & tempOp ;
|
|
|