From b3e70efa308ae7506ff00371b0c1ff0a0b6597e9 Mon Sep 17 00:00:00 2001 From: Lan Zongwei Date: Mon, 1 Sep 2025 07:42:31 +0800 Subject: [PATCH] Fix cmake variable APPLE (#6351) --- verilator-config.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verilator-config.cmake.in b/verilator-config.cmake.in index db4d4dbc5..108738349 100644 --- a/verilator-config.cmake.in +++ b/verilator-config.cmake.in @@ -119,7 +119,7 @@ if(NOT CMAKE_CXX_COMPILER_ID MATCHES MSVC) endif() endif() -if(Apple) +if(APPLE) add_link_options(-Wl,-U,__Z15vl_time_stamp64v,-U,__Z13sc_time_stampv) endif()