From 99a7fe5ff06e801ef8c52d015413bb2489f9f559 Mon Sep 17 00:00:00 2001 From: "Bhardwaj, Gopesh" Date: Mon, 7 Jul 2025 20:04:39 +0530 Subject: [PATCH] Ignoring aligned attribute warning (#70) ignoring aligned attribute warning [ROCm/roctracer commit: dd745ed9c731cf1c67a182a4ce41ce30afbfb8ca] --- projects/roctracer/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/roctracer/CMakeLists.txt b/projects/roctracer/CMakeLists.txt index 32ab0ced18..248ddd880a 100644 --- a/projects/roctracer/CMakeLists.txt +++ b/projects/roctracer/CMakeLists.txt @@ -42,7 +42,7 @@ endif() set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_compile_options(-Wall -Werror) +add_compile_options(-Wall -Wno-error=ignored-attributes -Werror) # To set addition RUNPATH in libraries # installed in /opt/rocm-ver/lib/roctracer set(ROCM_APPEND_PRIVLIB_RPATH "$ORIGIN/..")