-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[openblas] adds gcc14 support patch (#39340)
Fixes #38739 Upstream Issue: OpenMathLib/OpenBLAS#4668
- Loading branch information
1 parent
40616a5
commit 67a3005
Showing
5 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Index: cmake/system.cmake | ||
IDEA additional info: | ||
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | ||
<+>UTF-8 | ||
=================================================================== | ||
diff --git a/cmake/system.cmake b/cmake/system.cmake | ||
--- a/cmake/system.cmake (revision ce3f668c992cb3cc80849d5c30ed637f5adbd5b2) | ||
+++ b/cmake/system.cmake (date 1718638483744) | ||
@@ -160,6 +160,10 @@ | ||
endif () | ||
endif () | ||
|
||
+if (${CMAKE_C_COMPILER_ID} STREQUAL "GNU") | ||
+ set(CCOMMON_OPT "${CCOMMON_OPT} -Wno-error=incompatible-pointer-types") | ||
+endif () | ||
+ | ||
include("${PROJECT_SOURCE_DIR}/cmake/prebuild.cmake") | ||
if (DEFINED TARGET) | ||
if (${TARGET} STREQUAL COOPERLAKE AND NOT NO_AVX512) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters