mirror of
https://github.com/boostorg/config.git
synced 2025-07-30 04:17:16 +02:00
Fixes for PGI threading and ublas.
[SVN r76468]
This commit is contained in:
@ -19,6 +19,8 @@
|
||||
#if __PGIC__ >= 11
|
||||
|
||||
// options requested by configure --enable-test
|
||||
#define BOOST_HAS_PTHREADS
|
||||
#undef BOOST_HAS_PTHREAD_YIELD
|
||||
#define BOOST_HAS_NRVO
|
||||
#define BOOST_HAS_LONG_LONG
|
||||
|
||||
|
@ -81,6 +81,11 @@
|
||||
// example) also #define _MSC_VER
|
||||
# error "Compiler threading support is not turned on. Please set the correct command line options for threading: either /MT /MTd /MD or /MDd"
|
||||
|
||||
#elif defined __PGIC__
|
||||
// PGI
|
||||
//
|
||||
// No compiler support for threading
|
||||
|
||||
#else
|
||||
|
||||
# error "Compiler threading support is not turned on. Please consult your compiler's documentation for the appropriate options to use"
|
||||
|
Reference in New Issue
Block a user