Checking for environment:
Warning! Support for AMD64 host systems is work in progress.
Don't expect it to work or even to build at the moment.
Determined linux.amd64, OK.
Checking for kBuild: found, OK.
Checking for gcc: found version 4.1.3, using precompiled objects for recompiler, OK.
Checking for as86:
** as86 (variable AS86) not found!
Szukałem tego AS86 ale specjalnie nic nie znalazłem. Jak można temn problem rozwiązać?
***** Checking xalan *****
compiling the following source file:
#include <cstdio>
#include <xalanc/Include/XalanVersion.hpp>
extern "C" int main(void)
{
printf("found version %d.%d.%d",
XALAN_VERSION_MAJOR, XALAN_VERSION_MINOR, XALAN_VERSION_REVISION);
#if _XALAN_VERSION >= 10800
printf(", OK.\n");
return 0;
#else
printf(", expected version 1.8.0 or higher\n");
return 1;
#endif
}
using the following command line:
g++ -O -Wall -o .tmp_out .tmp_src.cc "-lxalan-c "
.tmp_src.cc:3:43: error: xalanc/Include/XalanVersion.hpp: No such file or directory
.tmp_src.cc: In function 'int main()':
.tmp_src.cc:7: error: 'XALAN_VERSION_MAJOR' was not declared in this scope
.tmp_src.cc:7: error: 'XALAN_VERSION_MINOR' was not declared in this scope
.tmp_src.cc:7: error: 'XALAN_VERSION_REVISION' was not declared in this scope