-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca47683
commit 653d2dd
Showing
8 changed files
with
107 additions
and
243 deletions.
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,3 @@ | ||
100-fix-build-vtkm-with-clang-19.patch | ||
101-fix-build-vtkm-with-clang-19_2.patch | ||
102-fix-build-vtkm-with-clang-19_3.patch |
This file was deleted.
Oops, something went wrong.
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,23 @@ | ||
--- a/Rendering/ANARI/vtkAnariPolyDataMapperNode.cxx | ||
+++ b/Rendering/ANARI/vtkAnariPolyDataMapperNode.cxx | ||
@@ -37,6 +37,9 @@ | ||
#include <memory> | ||
#include <string> | ||
#include <vector> | ||
+#include <cstdint> | ||
+#include <_bsd_types.h> | ||
+typedef uint32_t u_int32_t; | ||
|
||
using uvec2 = anari::std_types::uvec2; | ||
using uvec3 = anari::std_types::uvec3; | ||
--- a/Rendering/ANARI/vtkAnariRendererNode.cxx | ||
+++ b/Rendering/ANARI/vtkAnariRendererNode.cxx | ||
@@ -33,6 +33,8 @@ | ||
#include "vtkTexture.h" | ||
|
||
#include <cmath> | ||
+#include <_bsd_types.h> | ||
+typedef unsigned int uint; | ||
|
||
#include <anari/anari_cpp/ext/std.h> | ||
|
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 |
---|---|---|
@@ -1,40 +1,20 @@ | ||
--- a/ThirdParty/ioss/vtkioss/Ioss_IOFactory.C | ||
+++ b/ThirdParty/ioss/vtkioss/Ioss_IOFactory.C | ||
--- a/ThirdParty/ioss/vtkioss/Ioss_Field.C | ||
+++ b/ThirdParty/ioss/vtkioss/Ioss_Field.C | ||
@@ -12,6 +12,7 @@ | ||
#include <cstddef> // for nullptr | ||
#include <cstdint> | ||
#include "vtk_fmt.h" | ||
#include VTK_FMT(fmt/ostream.h) | ||
+#include VTK_FMT(fmt/ranges.h) | ||
#include <map> // for _Rb_tree_iterator, etc | ||
#include <ostream> // for basic_ostream, etc | ||
#include <set> | ||
--- a/ThirdParty/ioss/vtkioss/Ioss_StructuredBlock.C | ||
+++ b/ThirdParty/ioss/vtkioss/Ioss_StructuredBlock.C | ||
@@ -15,6 +15,7 @@ | ||
#include <Ioss_StructuredBlock.h> | ||
#include "vtk_fmt.h" | ||
#include VTK_FMT(fmt/ostream.h) | ||
+#include VTK_FMT(fmt/ranges.h) | ||
|
||
#include <cstddef> // for size_t | ||
#include <numeric> | ||
--- a/ThirdParty/ioss/vtkioss/Ioss_Utils.C | ||
+++ b/ThirdParty/ioss/vtkioss/Ioss_Utils.C | ||
@@ -21,6 +21,7 @@ | ||
#include VTK_FMT(fmt/chrono.h) | ||
#include <iostream> | ||
#include <string> | ||
#include <vector> | ||
--- a/ThirdParty/ioss/vtkioss/Ioss_VariableType.C | ||
+++ b/ThirdParty/ioss/vtkioss/Ioss_VariableType.C | ||
@@ -19,6 +19,7 @@ | ||
#include VTK_FMT(fmt/core.h) | ||
#include VTK_FMT(fmt/format.h) | ||
#include VTK_FMT(fmt/ostream.h) | ||
+#include VTK_FMT(fmt/ranges.h) | ||
#include <fstream> | ||
#include <map> | ||
#include <sstream> | ||
#include <string> | ||
--- a/ThirdParty/ioss/vtkioss/Ioss_ZoneConnectivity.C | ||
+++ b/ThirdParty/ioss/vtkioss/Ioss_ZoneConnectivity.C | ||
@@ -9,6 +9,7 @@ | ||
#include <cstddef> // for size_t | ||
#include "vtk_fmt.h" | ||
#include VTK_FMT(fmt/ostream.h) | ||
+#include VTK_FMT(fmt/ranges.h) | ||
#include <string> // for string | ||
#include <vector> // for vector | ||
|
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.