Missing axlib

Hi,

I have the following error:

pgf90-Error-Version axlib is not available in this installation

To my understanding, the code that fails with this message does not contain anything special. Why axlib is needed, what does it provide?

Thanks,

  • D.

Hi D,

The “-V” flag selects the compiler version. My guess is that you have compile flag “-Vaxlib” so the compiler is looking for Version axlib which doesn’t exist. Do you know what “axlib” is? Is is a library or library directory? If so, then the flag should be “-laxlib” or “-Laxlib”.

Hope this helps,
Mat

Oh, clear now, shameful mistake. That was created by mysterious -Vaxlib in one of the libraries’ compile options.

Thanks, Mat!