mirror of
https://github.com/urbit/shrub.git
synced 2024-11-24 04:58:08 +03:00
Rebuild the scripts without PKG_CONFIG_PATH hacks.
This commit is contained in:
parent
34950b696e
commit
b933204492
@ -48,11 +48,9 @@ are included as git submodules. To build urbit from source, perform the followin
|
||||
(For instructions for legacy meson, also see below)
|
||||
|
||||
1. Install all required dependencies.
|
||||
2. `git submodule init` in the urbit repository
|
||||
3. `git submodule update`
|
||||
4. `meson ./build`
|
||||
5. If the last step was successful, type `ninja -C build` to compile urbit.
|
||||
6. The executable should appear in `./build` directory.
|
||||
2. Run `./scripts/bootstrap`
|
||||
3. Run `./scripts/build`
|
||||
4. The executable should appear in `./build` directory.
|
||||
|
||||
### Using meson & ninja
|
||||
To configure project, enter the build directory and enter
|
||||
|
4
scripts/bootstrap
Executable file
4
scripts/bootstrap
Executable file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
git submodule init
|
||||
git submodule update
|
5
scripts/build
Executable file
5
scripts/build
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
mkdir ./build &> /dev/null
|
||||
meson . ./build
|
||||
ninja -C build
|
Loading…
Reference in New Issue
Block a user