mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:37:44 +00:00
Documentation: Change macOS Ladybird command to launch in the foreground
Also add flags to direct stdout/stderr to the terminal, and show how to pass arguments to the browser.
This commit is contained in:
parent
72e5b10b30
commit
08572d45b8
1 changed files with 11 additions and 2 deletions
|
@ -156,10 +156,19 @@ To automatically run in gdb:
|
||||||
ninja -C Build/ladybird debug
|
ninja -C Build/ladybird debug
|
||||||
```
|
```
|
||||||
|
|
||||||
To run without ninja rule:
|
To run without ninja rule on non-macOS systems:
|
||||||
```
|
```
|
||||||
export SERENITY_SOURCE_DIR=$(realpath ../)
|
export SERENITY_SOURCE_DIR=$(realpath ../)
|
||||||
./Build/ladybird/bin/Ladybird # or, in macOS: open ./Build/ladybird/bin/Ladybird.app
|
./Build/ladybird/bin/Ladybird
|
||||||
|
```
|
||||||
|
|
||||||
|
To run without ninja rule on macOS:
|
||||||
|
```
|
||||||
|
export SERENITY_SOURCE_DIR=$(realpath ../)
|
||||||
|
open -W --stdout $(tty) --stderr $(tty) ./Build/ladybird/bin/Ladybird.app
|
||||||
|
|
||||||
|
# Or to launch with arguments:
|
||||||
|
open -W --stdout $(tty) --stderr $(tty) ./Build/ladybird/bin/Ladybird.app --args https://ladybird.dev
|
||||||
```
|
```
|
||||||
|
|
||||||
### Debugging with CLion
|
### Debugging with CLion
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue