pikapython/port/linux/.vscode/c_cpp_properties.json
lyon 9d4aa3c38c try to fix gc about __pikaMain
fix format

can not markSweep after deinit root

support markRoot if not root

add clang-format

fix path

enable compile-commonds on to support clangd

set markSweep not default

use no_gc object for function frame

only gc for tinyobj, not pikaobj

restore add gc chain when init pikaObj

add clang-format in docker

set for default formatter to clang-format

all Object is GC_ROOT on create

only enable mark sweep to collect after OUT

markSweep after deinit __pikaMain

more mark sweep collect
2023-03-06 10:57:08 +08:00

22 lines
754 B
JSON

{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/package/pikascript/pikascript-api/**",
"${workspaceFolder}/package/pikascript/pikascript-core/**",
"${workspaceFolder}/package/pikascript/pikascript-lib/PikaStdDevice",
"${workspaceFolder}/config/**",
"${workspaceFolder}/test/**",
"/usr/include/lua5.3"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c99",
"cppStandard": "c++14",
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
}