Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Nektar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jingtian Zhou
Nektar
Commits
27d31264
Commit
27d31264
authored
1 month ago
by
Owen Parry
Committed by
Dave Moxey
1 month ago
Browse files
Options
Downloads
Patches
Plain Diff
Make the CWIPI patch work with IntelLLVM.
parent
3b30415c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
cmake/thirdparty-patches/cwipi-disable-warnings.patch
+7
-4
7 additions, 4 deletions
cmake/thirdparty-patches/cwipi-disable-warnings.patch
with
8 additions
and
4 deletions
CHANGELOG.md
+
1
−
0
View file @
27d31264
...
...
@@ -21,6 +21,7 @@ v5.8.0
-
Fixed Modified Arnoldi driver to remove discontinuities from random vectors (!2002)
-
Addedd support for backing up filters output when the file name have already existis (!2006)
-
Partially revert Geometry::v_ContainsPoint (!2007)
-
Make the CWIPI third-party patch work with IntelLLVM (!2053)
**CI**
-
Fix CubeAllElements performance test tolerance (!1943)
...
...
This diff is collapsed.
Click to expand it.
cmake/thirdparty-patches/cwipi-disable-warnings.patch
+
7
−
4
View file @
27d31264
...
...
@@ -12,7 +12,8 @@ diff -Naur cwipi-0.11.1.old/cmake/modules/default_flags.cmake cwipi-0.11.1/cmake
set (CMAKE_Fortran_FLAGS_DEBUG "-O0 -g -fcheck=bounds -fbacktrace")
@@ -29,7 +29,7 @@
elseif (CMAKE_Fortran_COMPILER_ID STREQUAL "Intel")
-elseif (CMAKE_Fortran_COMPILER_ID STREQUAL "Intel")
+elseif (CMAKE_Fortran_COMPILER_ID MATCHES "^Intel")
- set (CMAKE_Fortran_FLAGS "-cpp -fpic -warn -diag-disable 7712")
+ set (CMAKE_Fortran_FLAGS "-w -cpp -fpic -warn -diag-disable 7712")
...
...
@@ -39,7 +40,8 @@ diff -Naur cwipi-0.11.1.old/cmake/modules/default_flags.cmake cwipi-0.11.1/cmake
set (CMAKE_C_FLAGS_DEBUG "-O0 -g")
@@ -153,7 +153,7 @@
elseif (CMAKE_C_COMPILER_ID STREQUAL "Intel")
-elseif (CMAKE_C_COMPILER_ID STREQUAL "Intel")
+elseif (CMAKE_C_COMPILER_ID MATCHES "^Intel")
- set (CMAKE_C_FLAGS "-std=gnu99 -restrict -fpic -funsigned-char -Wall -Wcheck -Wshadow -Wpointer-arith -Wmissing-prototypes -Wuninitialized -Wunused -wd869,3656,177")
+ set (CMAKE_C_FLAGS "-std=gnu99 -restrict -fpic -funsigned-char -w")
...
...
@@ -64,9 +66,10 @@ diff -Naur cwipi-0.11.1.old/cmake/modules/default_flags.cmake cwipi-0.11.1/cmake
set (CMAKE_CXX_FLAGS_RELEASE "-O3")
set (CMAKE_CXX_FLAGS_DEBUG "-O0 -g")
@@ -25
3
,7 +25
3
,7 @@
@@ -25
1
,7 +25
1
,7 @@
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
-elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
+elseif (CMAKE_CXX_COMPILER_ID MATCHES "^Intel")
- set (CMAKE_CXX_FLAGS "-std=c++11 -fpic -funsigned-char -Wall -Wcheck -Wshadow -Wpointer-arith -Wmissing-prototypes -Wuninitialized -Wunused -wd869,3656,177")
+ set (CMAKE_CXX_FLAGS "-std=c++11 -fpic -funsigned-char -w")
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment