Skip to content

Commit 8066ca3

Browse files
committed
Fix RPATH for exception handling PAL test
1 parent bc3516d commit 8066ca3

File tree

1 file changed

+2
-2
lines changed
  • src/coreclr/pal/tests/palsuite/exception_handling/pal_sxs/test1

1 file changed

+2
-2
lines changed

src/coreclr/pal/tests/palsuite/exception_handling/pal_sxs/test1/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ if(CORECLR_SET_RPATH)
1111
set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
1212
set(CMAKE_INSTALL_RPATH "@loader_path")
1313
endif(CLR_CMAKE_HOST_OSX)
14-
if(CLR_CMAKE_HOST_LINUX OR CLR_CMAKE_HOST_HAIKU)
14+
if(CLR_CMAKE_HOST_LINUX OR CLR_CMAKE_HOST_HAIKU OR CLR_CMAKE_HOST_SUNOS)
1515
set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
1616
set(CMAKE_INSTALL_RPATH "\$ORIGIN")
17-
endif(CLR_CMAKE_HOST_LINUX OR CLR_CMAKE_HOST_HAIKU)
17+
endif(CLR_CMAKE_HOST_LINUX OR CLR_CMAKE_HOST_HAIKU OR CLR_CMAKE_HOST_SUNOS)
1818
endif(CORECLR_SET_RPATH)
1919

2020
# Test DLL1

0 commit comments

Comments
 (0)