Since 7.0 was released before Fedora 9, the installer does not recognize the glibc version. You can work around the problem by adding a case for glibc 2.8 at line 184 of the “install” script by copying the case for 2.5.
Note that PGI release 7.0 has not been tested on Fedora 9 so is not an officially supported configuration.
The symbol “__pgi_ctrl_init” was added to PGI release 7.1 as part of our support for tracebacks. So you’ll need to install the 7.2 portability package from our downloads page (http://www.pgroup.com/support/downloads.php) instead of the 7.0 package.
Another thing to try, is to statically link your program with “-Bstatic_pgi”, removing the need to use the portability package.
In general, Static versus Dynamic linking has little to no impact on performance on Linux. On Windows, you can see performance improvements using static linking especially when used with ADDR32 addressing mode (-Mlargeaddressaware=no).