Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

document the --enable-debug flag for configure #875

Merged
merged 1 commit into from
Aug 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions COMPILING.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ Optional libraries:
- `./game/ultrastardx[.exe]` (on MacOS: `open UltraStarDeluxe.app`)

#### configure flags
* `--enable-debug`: Outputs warnings and errors from Error.log also to the console, and prints stacktraces when an EAccessViolation occurs.
* `--with-portaudio`: This is the default.
* `--without-portaudio`: Use SDL audio input instead.
This should support newer platforms like PulseAudio and PipeWire.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The [wiki](https://github.com/UltraStar-Deluxe/USDX/wiki) contains more informat
There are two main ways to compile the game:

1. Lazarus IDE
2. `./autogen.sh && ./configure && make`
2. `./autogen.sh && ./configure [--enable-debug] && make`

The executable will be `game/ultrastardx[.exe]`.

Expand Down