From 1011ea86fa733b2f77434f3d2e0b6234993f8237 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Wed, 15 Apr 2026 17:45:48 -0400 Subject: [PATCH] Commentary (#7428) (#7432) --- docs/guide/install-cmake.rst | 8 +++++--- docs/guide/warnings.rst | 10 +++++----- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/guide/install-cmake.rst b/docs/guide/install-cmake.rst index ac4217b73..03566ac01 100644 --- a/docs/guide/install-cmake.rst +++ b/docs/guide/install-cmake.rst @@ -40,7 +40,8 @@ To build using MSVC: .. code-block:: bash cd verilator # directory containing source files of verilator - mkdir build + mkdir -p build + cd build cmake .. -DCMAKE_BUILD_TYPE=Release --install-prefix $PWD/../install cmake --build . --config Release cmake --install . --prefix $PWD/../install @@ -50,7 +51,8 @@ To build using ninja: .. code-block:: bash cd verilator - mkdir build + mkdir -p build + cd build cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release --install-prefix $PWD/../install -DCMAKE_MAKE_PROGRAM= -DBISON_EXECUTABLE= -DFLEX_EXECUTABLE= #execute ninja cmake --install . --prefix $PWD/../install @@ -71,7 +73,7 @@ Example cd verilator/examples cd cmake_hello_c - mkdir build + mkdir -p build cd build cmake .. # cmake -G Ninja .. cmake --build . --config Release # ninja diff --git a/docs/guide/warnings.rst b/docs/guide/warnings.rst index b1ad33061..f0ef61804 100644 --- a/docs/guide/warnings.rst +++ b/docs/guide/warnings.rst @@ -2601,11 +2601,11 @@ List Of Warnings Since version 5.046: Issued if neither :vlopt:`--sched-zero-delay`, nor - :vlopt:`--sched-zero-delay` is used on the command line, and the input does - not contain a compile time known ``#0`` delay, but does contain a - ``#(expressin)`` where the delay value cannot be determined at compile time. - Passing :vlopt:`--no-sched-zero-delay` can improve runtime performance if - variable delays are all known to be non-zero at runtime. + :vlopt:`--sched-zero-delay` is used on the command line, and the input + does not contain a compile time known ``#0`` delay, but does contain a + ``#(expression)`` where the delay value cannot be determined at compile + time. Passing :vlopt:`--no-sched-zero-delay` can improve runtime + performance if variable delays are all known to be non-zero at runtime. Also issued if :vlopt:`--no-sched-zero-delay` is used on the command line, but the input contains a compile time known ``#0`` delay. This is safe to