Skip to content

Commit

Permalink
[cmake] macOS isysroot switch argument: fix typo
Browse files Browse the repository at this point in the history
fixes #17515
  • Loading branch information
dpiparo committed Jan 25, 2025
1 parent afb52aa commit a5df5f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interpreter/cling/lib/Interpreter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ if (UNIX)
endif()
endif()
elseif (APPLE)
set(CLING_CXX_PATH_ARGS "-isysroot;${CMAKE_OSX_SYSROOT}")
set(CLING_CXX_PATH_ARGS "-isysroot ${CMAKE_OSX_SYSROOT}")
endif()
endif()

Expand Down

0 comments on commit a5df5f1

Please sign in to comment.