File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3737 - name : Build Server
3838 run : |
3939 mkdir build && cd build
40- cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DLUAU_ENABLE_TIME_TRACE=ON -DLUAU_BUILD_ASAN =ON ..
40+ cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DLUAU_ENABLE_TIME_TRACE=ON -DLSP_BUILD_ASAN:BOOL =ON ..
4141 cmake --build . --config RelWithDebInfo --target Luau.LanguageServer.CLI -j 3
4242
4343 - name : (MacOS) Verify universal build
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "")
33project (Luau.LanguageServer LANGUAGES CXX)
44
55option (LUAU_ENABLE_TIME_TRACE "Build with Luau TimeTrace" OFF )
6- option (LUAU_BUILD_ASAN "Build with ASAN" OFF )
6+ option (LSP_BUILD_ASAN "Build with ASAN" OFF )
77
88add_subdirectory (luau)
99add_library (Luau.LanguageServer STATIC )
@@ -91,7 +91,7 @@ else ()
9191 list (APPEND LUAU_LSP_OPTIONS -Wall -Werror)
9292endif ()
9393
94- if (LUAU_BUILD_ASAN )
94+ if (LSP_BUILD_ASAN )
9595 if (MSVC )
9696 add_compile_options (/fsanitize=address)
9797 add_link_options (/fsanitize=address)
You can’t perform that action at this time.
0 commit comments