mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
a37f30dc94
* wip changes for modern gcc * more * wip * blah * Define explicit size for symbol * Clean up evt_handle_exec1 * wip * . * fixes & VLA macro * VLA innit * wipz * Fix potential UB * meowp * meowp2 * fixies * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "e1f0b17917" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "e1f0b17917" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * fixules * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "3ba3277e57" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "3ba3277e57" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * more shiftability + symbols work * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "02879e52a7" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "02879e52a7" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * more * revert bss changes for now, new heaps overlay for aligning stuff to 0x1000 (not sure how necessary that is, so maybe will revert later on) * 'fixing' jp shift build * more * more syms * more progress * more * ididid * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "de54da38f5" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "de54da38f5" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "a27dc436a6" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "a27dc436a6" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * blah * stuff's broken, but at least it's maybe cleaner * modern gcc back * revert * shifting all overlays - works so far * progs * another * modern gcc flag, re-enabled all ifdef shift stuff * fixies * progress * fixes, matching build * heaps3 overlay and some symbol names * changies * PR comments & cleanup
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"files.eol": "\n",
|
|
"files.insertFinalNewline": true,
|
|
"editor.rulers": [120],
|
|
"clang-tidy.compilerArgs": [
|
|
"-std=gnu89",
|
|
"-Iinclude",
|
|
"-Iinclude/PR",
|
|
"-Iver/current/build/include",
|
|
"-Isrc",
|
|
"-D_LANGUAGE_C",
|
|
"-Wall"
|
|
],
|
|
"clang-tidy.blacklist": [
|
|
"include/PR",
|
|
"include/gcc"
|
|
],
|
|
"git.ignoreLimitWarning": true,
|
|
"search.exclude": {
|
|
"**/*.i": true,
|
|
"**/build/src": true,
|
|
"ctx.c": true,
|
|
"docs/doxygen": true,
|
|
"expected": true,
|
|
"ver/jp/expected": true,
|
|
"ver/us/expected": true
|
|
},
|
|
"python.autoComplete.extraPaths": [
|
|
"./tools"
|
|
],
|
|
"python.analysis.extraPaths": [
|
|
"./tools",
|
|
"./tools/build/sprite",
|
|
"./tools/splat"
|
|
],
|
|
"[c]": {
|
|
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?", // no $, for scripts
|
|
},
|
|
"files.associations": {
|
|
"*.h": "c",
|
|
},
|
|
"C_Cpp.autoAddFileAssociations": false,
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.splat_cache": true,
|
|
".ninja*": true,
|
|
"ver/current": true,
|
|
"expected": true,
|
|
"**/*.i": true,
|
|
"docs/doxygen": true
|
|
},
|
|
"C_Cpp.default.cStandard": "c89",
|
|
}
|