From f258c4cf61a1be55e38d8f1f6bb29d101c890f32 Mon Sep 17 00:00:00 2001 From: Vasileios Karakasis Date: Wed, 16 Oct 2019 16:16:50 +0200 Subject: [PATCH] Remove workaround for NetCDF C++ test with PGI --- cscs-checks/libraries/io/netcdf_compile_run.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cscs-checks/libraries/io/netcdf_compile_run.py b/cscs-checks/libraries/io/netcdf_compile_run.py index 2257e5aa39..96bda9898a 100644 --- a/cscs-checks/libraries/io/netcdf_compile_run.py +++ b/cscs-checks/libraries/io/netcdf_compile_run.py @@ -66,9 +66,5 @@ def setup(self, partition, environ, **job_opts): self.build_system.ldflags = ['-B' + self.linkage] else: self.build_system.ldflags = ['-%s' % self.linkage] - if environ.name == 'PrgEnv-pgi' and self.lang == 'cpp': - # FIXME: Workaround to fix compilation for PrgEnv-pgi - # Cray Case: #243751 - self.build_system.cppflags = ['-D_GLIBCXX_USE_CXX11_ABI=0'] super().setup(partition, environ, **job_opts)