-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#2122: Silence icpc
deprecation warning
#2129
Conversation
Pipelines resultsPR tests (clang-9, ubuntu, mpich) Build for a5df9ff (2023-05-08 18:25:48 UTC)
PR tests (gcc-9, ubuntu, mpich, zoltan, json schema test) Build for a5df9ff (2023-05-08 18:25:48 UTC)
PR tests (clang-11, ubuntu, mpich) Build for a5df9ff (2023-05-08 18:25:48 UTC)
PR tests (gcc-10, ubuntu, openmpi, no LB) Build for a5df9ff (2023-05-08 18:25:48 UTC)
PR tests (gcc-8, ubuntu, mpich, address sanitizer) Build for a5df9ff (2023-05-08 18:25:48 UTC)
PR tests (clang-12, ubuntu, mpich) Build for a5df9ff (2023-05-08 18:25:48 UTC)
PR tests (clang-13, ubuntu, mpich) Build for a5df9ff (2023-05-08 18:25:48 UTC)
PR tests (clang-14, ubuntu, mpich) Build for a5df9ff (2023-05-08 18:25:48 UTC)
PR tests (gcc-12, ubuntu, mpich) Build for a5df9ff (2023-05-08 18:25:48 UTC)
PR tests (nvidia cuda 11.0, ubuntu, mpich) Build for fa1d9c4 (2023-04-08 13:28:02 UTC)
PR tests (nvidia cuda 11.2, ubuntu, mpich) Build for a5df9ff (2023-05-08 18:25:48 UTC)
PR tests (clang-10, ubuntu, mpich) Build for a5df9ff (2023-05-08 18:25:48 UTC)
PR tests (gcc-11, ubuntu, mpich, trace runtime, coverage) Build for a5df9ff (2023-05-08 18:25:48 UTC)
PR tests (intel icpc, ubuntu, mpich) Build for a5df9ff (2023-05-08 18:25:48 UTC)
|
@@ -41,9 +41,12 @@ set(BROTLI_DISABLE_TESTS ON) | |||
# we need to disable bundled mode so it will install properly | |||
set(BROTLI_BUNDLED_MODE OFF) | |||
set(BROTLI_BUILD_PORTABLE ON) | |||
set(BROTLI_LIBRARY brotlicommon-static brotlienc-static brotlidec-static) | |||
set(BROTLI_BUILD_SHARED_LIBS OFF) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
vt
is only using static libs. This shouldn't affect anyone, I think.
@@ -11,6 +11,12 @@ function(set_darma_compiler_flags vt_target) | |||
endif () | |||
elseif (CMAKE_CXX_COMPILER_ID STREQUAL IntelLLVM AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 2021.3.0) | |||
list(APPEND TARGET_PRIVATE_CXX_FLAGS -fhonor-infinites -fhonor-nans) | |||
elseif (${CMAKE_CXX_COMPILER_ID} MATCHES "Intel") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should the be MATCHES
or STREQUAL
? Will we end up adding this flag for icpx
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you resolve this @JacobDomagala?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed to STREQUAL
Why are the Brotli build changes part of this PR? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved once Phil's comment is addressed.
fa1d9c4
to
932cf87
Compare
Brotli builds static and shared libs and both of them generate |
932cf87
to
a5df9ff
Compare
Fixes #2122