mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-17 20:01:32 +03:00
44b210b238
It looks like the debug mode was copied literally from the old Makefiles, which interacts poorly with meson and leads to builds with "-O0 -g -O3". The correct way to do this is to use "-Dbuildtype=release" or "-Dbuildtype=debug" during configuration. Set the default builds made by scripts/build to release.
6 lines
91 B
Bash
Executable File
6 lines
91 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir ./build &> /dev/null
|
|
meson . ./build -Dbuildtype=release
|
|
ninja -C build
|