代码拉取完成,页面将自动刷新
From 367387bab836c73c23719f97d929572c8b4e0fad Mon Sep 17 00:00:00 2001
From: Nick Rossenbach <[email protected]>
Date: Tue, 18 Apr 2023 23:31:51 +0200
Subject: [PATCH] Add -Wno-error=nonnull for test/cpp/api/
On some platforms the build might fail due to the nonnull error
being triggered by different compiler behavior.
Fix for #99278.
---
test/cpp/api/CMakeLists.txt | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/test/cpp/api/CMakeLists.txt b/test/cpp/api/CMakeLists.txt
index 6b801a073182794..181139b01360c30 100644
--- a/test/cpp/api/CMakeLists.txt
+++ b/test/cpp/api/CMakeLists.txt
@@ -80,6 +80,11 @@ if(NOT MSVC)
target_compile_options_if_supported(test_api "-Wno-maybe-uninitialized")
# gcc gives nonsensical warnings about variadic.h
target_compile_options_if_supported(test_api "-Wno-unused-but-set-parameter")
+ # the nonnull check might trigger for some build configurations,
+ # probably happening due to different code optimization
+ # (see e.g. https://rkoucha.fr/tech_corner/nonnull_gcc_attribute.html)
+ # this happened for a riscv build: https://github.com/pytorch/pytorch/issues/99278
+ target_compile_options_if_supported(test_api "-Wno-error=nonnull")
endif()
if(INSTALL_TEST)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。