I want to write a simple program which uses Trilinos. After many problems with configuration script I\'ve managed to write it, so it launches without any problem. The proble
Finally I've found out that the problem was env -i
command - it removed even the g++
path, so the makefile must be launched without it.
Is GCC_EXEC_PREFIX
set in your environment? Check out https://stackoverflow.com/a/15262886 where there was a very similar issue, resolved by not setting GCC_EXEC_PREFIX
in the environment.