Boost logo

Boost-Commit :

From: kbelco_at_[hidden]
Date: 2008-04-23 12:16:39


Author: noel_belcourt
Date: 2008-04-23 12:16:38 EDT (Wed, 23 Apr 2008)
New Revision: 44741
URL: http://svn.boost.org/trac/boost/changeset/44741

Log:
Patch PGI to fix config problem (clock_gettime is unresolved
external) and add required macro define for IOV_MAX support.

Text files modified:
   trunk/tools/build/v2/tools/pgi.jam | 4 ++++
   1 files changed, 4 insertions(+), 0 deletions(-)

Modified: trunk/tools/build/v2/tools/pgi.jam
==============================================================================
--- trunk/tools/build/v2/tools/pgi.jam (original)
+++ trunk/tools/build/v2/tools/pgi.jam 2008-04-23 12:16:38 EDT (Wed, 23 Apr 2008)
@@ -36,6 +36,9 @@
   flags pgi.compile DEFINES $(condition) :
     [ feature.get-values <define> : $(options) ] : unchecked ;
 
+ # IOV_MAX support
+ flags pgi.compile DEFINES $(condition) : __need_IOV_MAX : unchecked ;
+
   # set link flags
   flags pgi.link FINDLIBS-ST : [
     feature.get-values <find-static-library> : $(options) ] : unchecked ;
@@ -97,6 +100,7 @@
 flags pgi.link LINKPATH <library-path> ;
 flags pgi.link FINDLIBS-ST <find-static-library> ;
 flags pgi.link FINDLIBS-SA <find-shared-library> ;
+flags pgi.link FINDLIBS-SA <threading>single : rt ;
 flags pgi.link FINDLIBS-SA <threading>multi : pthread rt ;
 flags pgi.link LIBRARIES <library-file> ;
 flags pgi.link LINK-RUNTIME <runtime-link>static : static ;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk