Skip to content

Commit

Permalink
Update docs, Python driver example
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePopoloski committed Feb 17, 2025
1 parent c278f42 commit 47379ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/building.dox
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ SLANG_CI_BUILD | Enable additional longer-running tests for automated builds | O
SLANG_CLANG_TIDY | The path to a clang-tidy binary to run against the slang sources | ""
SLANG_WARN_FLAGS | Extra compiler warning flags to enable when building slang | ""
SLANG_CMAKECONFIG_INSTALL_DIR | If install rules are included, this path is used to install the generated CMake config for the slang package | ${CMAKE_INSTALL_LIBDIR}/cmake/slang
SLANG_USE_CPPTRACE | Enable use of the cpptrace library | OFF

@section build-scripts Build Scripts

Expand Down
3 changes: 1 addition & 2 deletions pyslang/examples/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ def main():
return

# Perform elaboration and report all diagnostics
compilation = driver.createCompilation()
driver.reportCompilation(compilation, quiet=False)
driver.runFullCompilation(quiet=False)


if __name__ == "__main__":
Expand Down

0 comments on commit 47379ad

Please sign in to comment.