Error when running makelocalrc

Hi,

I’m running a Mandriva 2010.2 on my laptop. I’ve been trying to install the PGI trial version compiler (in my home directory) , but when I run makelocalrc with the command :

/home/didier/Labo/Fortran/Compilation/PGI/linux86-64/11.5/bin/makelocalrc -x /home/didier/Labo/Fortran/Compilation/PGI/linux86-64/11.5

I get the error message :

/usr/lib/gcc/x86_64-manbo-linux-gnu/4.4.3: not found;

But /usr/lib/gcc/x86_64-manbo-linux-gnu/4.4.3 does exist on my system, together with
/usr/lib/gcc/x86_64-mandriva-linux-gnu/4.4.3

So, i’m quite at a loss !

If you have any idea …

bzh,

Sorry you are having problems. First thing to determine is whether
you have gcc for 32-bit and 64-bit installed. They are needed for
PGI compilers to use the same assembler and linker as gcc, and a
successful installation begins with the PGI install script finding
gcc on your system.

Here is a simple hello program

% more hello.c
#include <stdio.h>
#include <stdlib.h>

int main()
{
printf(" hello\n");

}

Create the hello.c source file, and
send the output dialog of each of the following to trs@pgroup.com

a. gcc -m32 -v -o hello_32 hello.c
b. file hello_32
c. gcc -m64 -v -o hello_64 hello.c
d. file hello_64

We can determine from there what needs to happen next.

thanks,
dave

I have the same problem.

Did you solve this problem?