{"id":41823824,"url":"https://github.com/decompals/wibo","last_synced_at":"2026-03-04T21:06:01.557Z","repository":{"id":41342499,"uuid":"502758190","full_name":"decompals/wibo","owner":"decompals","description":"A minimal, low-fuss wrapper that can run simple command-line 32-bit Windows binaries on Linux and macOS.","archived":false,"fork":false,"pushed_at":"2026-03-02T03:30:47.000Z","size":1119,"stargazers_count":120,"open_issues_count":11,"forks_count":25,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-03-02T07:53:55.677Z","etag":null,"topics":["cpp","linux","windows","wine","wrapper","x86"],"latest_commit_sha":null,"homepage":"","language":"C++","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/decompals.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2022-06-13T00:20:58.000Z","updated_at":"2026-03-02T03:30:36.000Z","dependencies_parsed_at":"2023-10-16T04:12:01.873Z","dependency_job_id":"e1b4ccc0-5b54-4d29-aed6-326254815755","html_url":"https://github.com/decompals/wibo","commit_stats":{"total_commits":88,"total_committers":18,"mean_commits":4.888888888888889,"dds":0.7045454545454546,"last_synced_commit":"93862405ed6bbf1a729205db6e4083de76dca623"},"previous_names":[],"tags_count":51,"template":false,"template_full_name":null,"purl":"pkg:github/decompals/wibo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decompals%2Fwibo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decompals%2Fwibo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decompals%2Fwibo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decompals%2Fwibo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/decompals","download_url":"https://codeload.github.com/decompals/wibo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decompals%2Fwibo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30092968,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T20:42:30.420Z","status":"ssl_error","status_checked_at":"2026-03-04T20:42:30.057Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["cpp","linux","windows","wine","wrapper","x86"],"created_at":"2026-01-25T08:01:47.502Z","updated_at":"2026-03-04T21:06:01.550Z","avatar_url":"https://github.com/decompals.png","language":"C++","readme":"# wibo\n\nA minimal, low-fuss wrapper that can run simple command-line 32-bit Windows binaries on Linux and macOS - developed to run Windows compilers faster than Wine.\n\nDownload the latest release from [GitHub releases](https://github.com/decompals/wibo/releases) or build from source.\n\nAvailable builds:\n\n- `wibo-i686`: Linux x86 (static binary)\n- `wibo-x86_64`: Linux x86_64 (static binary, experimental)\n- `wibo-macos`: macOS x86_64 (experimental, Rosetta 2 supported)\n\n## Building\n\n```sh\ncmake --preset debug\ncmake --build --preset debug\n```\n\nThis will produce an x86 (32-bit) debug Linux binary at `build/debug/wibo`.\n\nAvailable presets:\n\n- `debug`: Debug Linux x86\n- `release`: Release Linux x86\n- `debug64`: Debug Linux x86_64\n- `release64`: Release Linux x86_64\n- `debug-macos`: Debug macOS x86_64\n- `release-macos`: Release macOS x86_64\n\n## Usage\n\n```sh\nwibo [options] \u003cprogram.exe\u003e [arguments...]\nwibo path [subcommand options] \u003cpath\u003e [path...]\n```\n\n### General Options\n\n| Option          | Description                       |\n| --------------- | --------------------------------- |\n| `-h, --help`    | Show usage information and exit   |\n| `-V, --version` | Show version information and exit |\n\n### Runtime Options\n\n| Option             | Description                                                                                                      |\n| ------------------ | ---------------------------------------------------------------------------------------------------------------- |\n| `-C, --chdir DIR`  | Change working directory before launching the program                                                            |\n| `-D, --debug`      | Enable debug logging (same as `WIBO_DEBUG=1`)                                                                    |\n| `--cmdline STRING` | Use `STRING` as the exact guest command line (must include the program name, e.g. `\"test.exe a b c\"`)            |\n| `--`               | Stop option parsing; following arguments are used verbatim as the guest command line, including the program name |\n\n### Subcommands\n\n| Subcommand | Description                                                                       |\n| ---------- | --------------------------------------------------------------------------------- |\n| `path`     | Convert between host and Windows-style paths (see `wibo path --help` for details) |\n\n### Examples\n\n#### Normal usage\n\n```sh\nwibo path/to/test.exe a b c\nwibo -C path/to test.exe a b c\n```\n\n#### Advanced: full control over the guest command line\n\n```sh\nwibo path/to/test.exe -- test.exe a b c\nwibo --cmdline 'test.exe a b c' path/to/test.exe\nwibo -- test.exe a b c\n```\n\n## Tests\n\nSelf-checking Windows fixtures run through CTest. They require a 32-bit MinGW cross toolchain (`i686-w64-mingw32-gcc` and `i686-w64-mingw32-windres`).\n\nOn macOS: use `brew install mingw-w64`.\n\n```sh\nctest --preset debug\n```\n\nThis will cross-compile the fixture executables, run them through `wibo`, and fail if any WinAPI expectations are not met.\n\n## Related Projects\n\n- [taviso/loadlibrary](https://github.com/taviso/loadlibrary) - Initial inspiration for this project.\n- [evmar/retrowin32](https://github.com/evmar/retrowin32) - A similar project with different goals and architecture.\n- [decomp.me](https://decomp.me) - Collaborative decompilation website; uses wibo to run Windows compilers.\n\n## License\n\nwibo is licensed under the MIT License. See [`LICENSE`](LICENSE) for details.\n\nOptionally, wibo embeds custom Wine CRT DLL builds from [encounter/winedll](https://github.com/encounter/winedll). To disable, set `-DWIBO_ENABLE_WINE_DLLS=NO`.\n\nWine is licensed under the LGPLv2.1+. See [`winedll/LICENSE`](https://github.com/encounter/winedll/blob/main/LICENSE) and [`winedll/COPYING.LIB`](https://github.com/encounter/winedll/blob/main/COPYING.LIB) for details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdecompals%2Fwibo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdecompals%2Fwibo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdecompals%2Fwibo/lists"}