From bb4756d2e024c437f11f10d1e1090b0907cada66 Mon Sep 17 00:00:00 2001 From: Ranjith Ramakrishnan Date: Mon, 7 Aug 2023 09:37:12 -0700 Subject: [PATCH] Disable file reorg backward compatibility support by default Change-Id: Ib53a4d0476ec598025d4f1f98414e0e425bb0e49 --- runtime/hsa-runtime/CMakeLists.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/runtime/hsa-runtime/CMakeLists.txt b/runtime/hsa-runtime/CMakeLists.txt index 9759e74ce3..2107eabd69 100644 --- a/runtime/hsa-runtime/CMakeLists.txt +++ b/runtime/hsa-runtime/CMakeLists.txt @@ -316,11 +316,8 @@ install ( FILES ${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.md DESTINATION ${CMAKE_INSTA # Install public headers install ( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/inc/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/hsa COMPONENT dev ) -# Disable header path migration helpers for ASAN package -if(NOT ENABLE_ASAN_PACKAGING) # Option to build header path migration helpers. - option(INCLUDE_PATH_COMPATIBILITY "Generate backward compatible headers and include paths. Use of these headers will warn when included." ON) -endif() +option(INCLUDE_PATH_COMPATIBILITY "Generate backward compatible headers and include paths. Use of these headers will warn when included." OFF) if(INCLUDE_PATH_COMPATIBILITY) # To enable/disable #error in wrapper header files if(NOT DEFINED ROCM_HEADER_WRAPPER_WERROR)