SWDEV-273235 - [PAL] Ignore system headers on Linux
CMake always searches system paths for specified files before resorting to the hints we give it. We should not be using elf and GL headers from /usr/include. Change-Id: I2172ce3da9cc101ced63e22d95ecc031b94f0a67
This commit is contained in:
committed by
Maneesh Gupta
parent
db104d71c8
commit
a2612343d5
@@ -28,7 +28,8 @@ find_path(AMD_LIBELF_INCLUDE_DIR libelf.h
|
||||
PATHS
|
||||
${CMAKE_SOURCE_DIR}/hsail-compiler/lib/loaders/elf/utils/libelf
|
||||
${CMAKE_SOURCE_DIR}/../hsail-compiler/lib/loaders/elf/utils/libelf
|
||||
${CMAKE_SOURCE_DIR}/../../hsail-compiler/lib/loaders/elf/utils/libelf)
|
||||
${CMAKE_SOURCE_DIR}/../../hsail-compiler/lib/loaders/elf/utils/libelf
|
||||
NO_DEFAULT_PATH)
|
||||
|
||||
find_path(AMD_HSAIL_INCLUDE_DIR hsa.h
|
||||
HINTS
|
||||
|
||||
@@ -35,7 +35,8 @@ find_path(AMD_UGL_INCLUDE_DIR GL/glx.h
|
||||
${CMAKE_SOURCE_DIR}/../drivers/drivers
|
||||
${CMAKE_SOURCE_DIR}/../../drivers/drivers
|
||||
PATH_SUFFIXES
|
||||
ugl/inc)
|
||||
ugl/inc
|
||||
NO_DEFAULT_PATH)
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(AMD_UGL
|
||||
|
||||
Reference in New Issue
Block a user