mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 14:25:44 +08:00
557e77a676
- Add SUBRK and DIVRK bytecode instructions - Enables future performance optimizations Miscellaneous - Small performance improvements to new non-strict mode - Introduce more scripts for fuzzing - Improcements to dataflow analysis
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"version": 6,
|
|
"configurePresets": [
|
|
{
|
|
"name": "fuzz",
|
|
"displayName": "Fuzz",
|
|
"description": "Configures required fuzzer settings.",
|
|
"binaryDir": "build",
|
|
"condition": {
|
|
"type": "anyOf",
|
|
"conditions": [
|
|
{
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Darwin"
|
|
},
|
|
{
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Linux"
|
|
}
|
|
]
|
|
},
|
|
"cacheVariables": {
|
|
"CMAKE_OSX_ARCHITECTURES": "x86_64",
|
|
"CMAKE_BUILD_TYPE": "Release",
|
|
"CMAKE_CXX_STANDARD": "17",
|
|
"CMAKE_CXX_EXTENSIONS": false
|
|
},
|
|
"warnings": {
|
|
"dev": false
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "fuzz-proto",
|
|
"displayName": "Protobuf Fuzzer",
|
|
"description": "Builds the protobuf-based fuzzer and transpiler tools.",
|
|
"configurePreset": "fuzz",
|
|
"targets": [
|
|
"Luau.Fuzz.Proto",
|
|
"Luau.Fuzz.ProtoTest"
|
|
]
|
|
}
|
|
]
|
|
}
|