is it possible to compile IT++ with Borland C++ Builder 6,
I have compile IT++ with VC++, and it works but I have some problem with borland after converting the .dsp file in a .dpr project
it seems the "cmath" unit is not recognized so i replace it by "math.h"
So it passes this error but i have another one in "hyperg.cpp" with lgamma function (see below):
if( b > 0 )
{
temp = lgamma(b);
t += temp;
u += temp;
}
[C++ Error] hyperg.cpp(225): E2268 Call to undefined function 'lgamma'
Do u know an issue to this problem?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
is it possible to compile IT++ with Borland C++ Builder 6,
I have compile IT++ with VC++, and it works but I have some problem with borland after converting the .dsp file in a .dpr project
it seems the "cmath" unit is not recognized so i replace it by "math.h"
So it passes this error but i have another one in "hyperg.cpp" with lgamma function (see below):
if( b > 0 )
{
temp = lgamma(b);
t += temp;
u += temp;
}
[C++ Error] hyperg.cpp(225): E2268 Call to undefined function 'lgamma'
Do u know an issue to this problem?