{"id":16131298,"url":"https://github.com/calinou/godot-debug-builds","last_synced_at":"2025-03-16T09:32:47.203Z","repository":{"id":62750411,"uuid":"237255585","full_name":"Calinou/godot-debug-builds","owner":"Calinou","description":"Godot editor builds with debug symbols. Slower than release builds, use for troubleshooting only!","archived":false,"fork":false,"pushed_at":"2024-08-22T21:14:43.000Z","size":35,"stargazers_count":28,"open_issues_count":1,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-18T14:48:50.720Z","etag":null,"topics":["godot-engine","godotengine"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Calinou.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-30T16:32:54.000Z","updated_at":"2024-09-17T10:58:08.000Z","dependencies_parsed_at":"2024-08-22T02:06:33.909Z","dependency_job_id":"8090c967-46de-4b88-8a7d-70d4662dc65e","html_url":"https://github.com/Calinou/godot-debug-builds","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Calinou%2Fgodot-debug-builds","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Calinou%2Fgodot-debug-builds/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Calinou%2Fgodot-debug-builds/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Calinou%2Fgodot-debug-builds/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Calinou","download_url":"https://codeload.github.com/Calinou/godot-debug-builds/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221661603,"owners_count":16859558,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["godot-engine","godotengine"],"created_at":"2024-10-09T22:24:46.309Z","updated_at":"2024-10-27T10:18:40.034Z","avatar_url":"https://github.com/Calinou.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Godot debug builds\n\nThis repository contains *debug* builds of the Godot editor with full debugging\ninformation. Most optimizations are disabled to make backtraces more useful.\nYou want to use an [optimized build](https://godotengine.org/download/) for\nproduction, as it'll feel significantly snappier.\n\nThose binaries can also be used to\n[profile the engine execution](https://docs.godotengine.org/en/stable/development/cpp/using_cpp_profilers.html)\nand see where performance bottlenecks (in debug mode) come from. Note that in release\nbinaries, the bottlenecks may not be exactly the same as release binaries have\nmore optimizations enabled.\n\nWindows binaries were compiled with Visual Studio Community. In addition to\nGodot's built-in crash handler, you can use Visual Studio or WinDbg to get\nbacktraces. If you're on Windows 10, you may want to use the newer [WinDbg\nPreview](https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-download-tools).\n\nSee [BUILD.md](BUILD.md) if you want to compile your own debug builds easily.\n\n\u003cdetails\u003e\n\u003csummary\u003eCompiler versions used\u003c/summary\u003e\n\n### Windows\n\n- For Godot 4.0 and later, Windows binaries were compiled on Windows 11 with Visual Studio 2022.\n- For Godot 3.5.1 and older, Windows binaries were compiled on Windows 10 with Visual Studio 2019.\n\n### Linux\n\n- For Godot 3.5 and later, Linux binaries were compiled on Ubuntu 20.04 with GCC 9.3.\n- For Godot 3.4.5 and older, Linux binaries were compiled on Ubuntu 18.04 with GCC 7.5.\n- For Godot 3.2.3 and older, Linux binaries were compiled on Ubuntu 16.04 with GCC 5.4.\n\n### macOS\n\n- For Godot 4.0.3 and later, Xcode 14.3 is used.\n\u003c/details\u003e\n\n## Downloads\n\n- **Head to the [Releases](https://github.com/Calinou/godot-debug-builds/releases)\n  tab of this repository for downloads.**\n\n## Usage\n\n### Windows\n\n- Download a debug build and extract the ZIP archive.\n  - Make sure the PDB file is next to the executable at all times! The PDB file\n    must also have the same name as the executable to work.\n- Start the debug build. You can either start it from a debugger, or attach a\n  debugger at runtime (if you use Visual Studio for debugging).\n\n### Linux\n\n- Download a debug build and extract the ZIP archive.\n- Start the debug build from a terminal. You should get a backtrace in\n  the terminal when it crashes.\n  - You can also use `gdb` or `lldb` from the command line to run Godot and\n    get a backtrace using `bt full`.\n\n### macOS\n\n- Follow instructions in\n  [Running Godot apps on macOS](https://docs.godotengine.org/en/latest/tutorials/export/running_on_macos.html#app-is-signed-including-ad-hoc-signatures-but-not-notarized),\n  as the editor isn't notarized.\n- To run the editor from a terminal, `cd` to the folder containing the `.app` bundle\n  then run `\"Godot Debug.app/Contents/MacOS/Godot\"` (with quotes).\n  This will allow you to see the crash handler's output when the editor crashes.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcalinou%2Fgodot-debug-builds","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcalinou%2Fgodot-debug-builds","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcalinou%2Fgodot-debug-builds/lists"}