search for: pg_home

Displaying 4 results from an estimated 4 matches for "pg_home".

2008 Apr 07
2
CentOS, Postgres init and puppet
Me again! I have a recipe that looks like: class postgresql { file { pg_hba_conf: name => "/var/lib/pgsql/data/pg_hba.conf", source => "puppet://puppetmaster/files/workstations/common/var/lib/pgsql/data/pg_hba.conf", owner => postgres, group => postgres, mode => 600, subscribe => [ Package[postgresql] ],
2006 Mar 09
1
R2.2.1-patched build failed with PGI 6.1 on x86-64
...gi/src/library/tools' make[2]: *** [R] Error 1 make[2]: Leaving directory `/home/andy/Rbuild/R221-pgi/src/library' make[1]: *** [R] Error 1 make[1]: Leaving directory `/home/andy/Rbuild/R221-pgi/src' make: *** [R] Error 1 I configured it as follows: ~/Rbuild/R-patched/configure \ PG_HOME=/usr/pgi/linux86-64/6.1 \ CC=pgcc \ CFLAGS="-O2 -Kieee" \ CPPFLAGS="-I$PG_HOME/include -I$PG_HOME/include/CC" \ CPICFLAGS=-fpic \ F77=pgf77 \ FFLAGS="-Kieee"\ FPICFLAGS=-fpic \ CXX=pgCC \ CXXFLAGS="-Kieee"\ CX...
2006 Mar 10
2
problem building R-patched on x86-64 with PGI 6.1
...h-true.R, in particular, the following: > pretty(pi, n = 10) - 2:5 [1] -2.220446e-16 -4.440892e-16 -8.881784e-16 -8.881784e-16 whereas the build with the -Kieee flag gives: > pretty(pi, n = 10) - 2:5 [1] 0 0 0 0 and can pass the arith-true.R test. The configuration is as follows: export PG_HOME=/usr/pgi/linux86-64/6.1 ~/Rbuild/R-patched/configure \ CC=pgcc \ CFLAGS="-g -Kieee" \ CPPFLAGS="-I$PG_HOME/include -I$PG_HOME/include/CC" \ CPICFLAGS=-fpic \ F77=pgf95 \ FFLAGS="-g -Kieee"\ FPICFLAGS=-fpic \ CXX=pgCC \ CXXF...
2005 Oct 12
0
additional comments on building R with PGI compiler
Hi, I have additional comments on building R with PGI compiler. If one wants to use external BLAS library, then pgf90 instead of pgf77 should be used, and BLAS_LIBS flags should be set. e.g. F77 = $PG_HOME/bin/pgf90 BLAS_LIBS='-L/opt/acml2.7.0/pgi64/ -lacml' # for ACML library BLAS_LIBS='-L/usr/lib64 -lg2c -lblas' # for generic BLAS library that comes with OS distribution. Regards, Jennifer