Skip to content

Commit

Permalink
only do stdc++fs check on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
theAeon committed Feb 29, 2024
1 parent 4040232 commit 65db0cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ FetchContent_Declare(
FetchContent_MakeAvailable(HighFive)
if(WIN32)
target_link_libraries(RcppPlanc PRIVATE "${R_HOME}/bin/x64/R.dll")
else()
elseif(LINUX)
#rhel 8 libstdc++ unexported symbol workaround
check_cxx_symbol_exists(std::filesystem::exists "filesystem" HAVE_FS)
if(NOT HAVE_FS)
Expand Down

0 comments on commit 65db0cc

Please sign in to comment.