mirror of
https://github.com/luau-lang/luau.git
synced 2025-01-19 17:28:06 +00:00
Merge branch 'master' into merge
This commit is contained in:
commit
f76a99b800
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
# Security Guarantees
|
||||
|
||||
Luau provides a safe sandbox that scripts can not escape from, short of vulnerabilities in custom C functions exposed by the host. This includes the virtual machine and builtin libraries. Notably this currently does *not* include the work-in-progress native code generation facilities.
|
||||
Luau provides a safe sandbox that scripts can not escape from, short of vulnerabilities in custom C functions exposed by the host. This includes the virtual machine, builtin libraries and native code generation facilities.
|
||||
|
||||
Any source code can not result in memory safety errors or crashes during its compilation or execution. Violations of memory safety are considered vulnerabilities.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
||||
if(${CMAKE_VERSION} VERSION_LESS "3.26")
|
||||
message(WARNING "Building the Luau fuzzer requires Clang version 3.26 of higher.")
|
||||
message(WARNING "Building the Luau fuzzer requires CMake version 3.26 or higher.")
|
||||
return()
|
||||
endif()
|
||||
|
||||
|
|
Loading…
Reference in a new issue