-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#0: CMake: Remove stdlib interface library (#14320)
- Loading branch information
1 parent
25a35e3
commit fd79b81
Showing
4 changed files
with
62 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
########################################################################################### | ||
# Project Options | ||
# The following options and their defaults impact what artifacts get built | ||
########################################################################################### | ||
option(WITH_PYTHON_BINDINGS "Enables build of python bindings" ON) | ||
option(ENABLE_CODE_TIMERS "Enable code timers" OFF) | ||
option(ENABLE_TRACY "Enable Tracy Profiling" OFF) | ||
option(ENABLE_LIBCXX "Enable using libc++" ON) | ||
option(ENABLE_BUILD_TIME_TRACE "Enable build time trace (Clang only -ftime-trace)" OFF) | ||
option(BUILD_SHARED_LIBS "Create shared libraries" ON) | ||
option(ENABLE_ASAN "Enable build with AddressSanitizer" OFF) | ||
option(ENABLE_MSAN "Enable build with MemorySanitizer" OFF) | ||
option(ENABLE_TSAN "Enable build with ThreadSanitizer" OFF) | ||
option(ENABLE_UBSAN "Enable build with UndefinedBehaviorSanitizer" OFF) | ||
option(BUILD_PROGRAMMING_EXAMPLES "Enables build of tt_metal programming examples" OFF) | ||
option(TT_METAL_BUILD_TESTS "Enables build of tt_metal tests" OFF) | ||
option(TTNN_BUILD_TESTS "Enables build of ttnn tests" OFF) | ||
option(ENABLE_CCACHE "Build with compiler cache" FALSE) | ||
########################################################################################### |