mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-21 22:11:28 +01:00

modified: t/Tensorflow/TensorFlow-2.9.1-foss-2022a-CUDA-11.7.0.eb new file: t/Tensorflow/TensorFlow-2.9.1_fix-include-def.patch new file: t/Tensorflow/TensorFlow-2.9.1_test.patch deleted: n/nano/nano-6.4-GCCcore-11.3.0.eb deleted: t/Tensorflow/TensorFlow-2.9.1_fix-protobuf-include-def.patch
15 lines
719 B
Diff
15 lines
719 B
Diff
Fix an issue where google/protobuf/port_def.inc or io_coded_stream dependencies are not found.
|
|
|
|
diff -ruN tensorflow-2.9.1_old/third_party/systemlibs/protobuf.BUILD tensorflow-2.9.1/third_party/systemlibs/protobuf.BUILD
|
|
--- tensorflow-2.9.1_old/third_party/systemlibs/protobuf.BUILD 2022-11-10 16:57:13.649126750 +0100
|
|
+++ tensorflow-2.9.1/third_party/systemlibs/protobuf.BUILD 2022-11-10 17:00:42.548576599 +0100
|
|
@@ -43,6 +43,8 @@
|
|
],
|
|
),
|
|
"wrappers": ("google/protobuf/wrappers.proto", []),
|
|
+ "port_def": ("google/protobuf/port_def.inc", []),
|
|
+ "coded_stream": ("google/protobuf/io/coded_stream.h", []),
|
|
}
|
|
|
|
RELATIVE_WELL_KNOWN_PROTOS = [proto[1][0] for proto in WELL_KNOWN_PROTO_MAP.items()]
|