Changeset 417ff46 in mainline
- Timestamp:
-
2021-03-27T05:54:53Z
(3 years ago)
- Author:
- GitHub <noreply@…>
- Parents:
- dbf1be5
- git-author:
- Edward Nicholes Jr <GameDevFox@…> (2021-03-27 05:54:53)
- git-committer:
- GitHub <noreply@…> (2021-03-27 05:54:53)
- Message:
-
Install meson==0.50.1 to compile correctly
When running pip3 install meson
as part of the build instructions installs version 0.57.1
(as of this commit) which causes numerous warnings when running ninja
causing the build to fail.
Reinstalling a previous version of meson
(0.50.1 which is also used in the .travis.yml
build script) fixes the build and rerunning configure.sh
and ninja
completes the build successfully
-
File:
-
Legend:
- Unmodified
- Added
- Removed
-
rdbf1be5
|
r417ff46
|
|
76 | 76 | ```sh |
77 | 77 | $ pip3 install ninja |
78 | | $ pip3 install meson |
| 78 | $ pip3 install meson==0.50.1 |
79 | 79 | ``` |
80 | 80 | |