mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 10:12:39 +01:00
Update README. Add pkg-maintainer section.
This commit is contained in:
parent
be5778d9bb
commit
4519c72ff4
1 changed files with 17 additions and 3 deletions
20
README.md
20
README.md
|
@ -33,7 +33,6 @@ Similar to the legacy IRC protocol's origins, Matrix wisely leverages technologi
|
|||
for its day to aid the virility of implementations. A vibrant and growing ecosystem
|
||||
[already exists](https://matrix.org/docs/projects/try-matrix-now.html).
|
||||
|
||||
<br />
|
||||
|
||||
#### Dependencies
|
||||
|
||||
|
@ -79,7 +78,10 @@ Provides compression for the database, etc.
|
|||
<img align="right" src="https://i.imgur.com/YMUAULE.png" />
|
||||
</a>
|
||||
|
||||
### Building from git
|
||||
### Building from source
|
||||
|
||||
*Please follow the standalone build instructions in the next section until this
|
||||
notice is removed.*
|
||||
|
||||
```
|
||||
./autogen.sh
|
||||
|
@ -88,7 +90,7 @@ make
|
|||
sudo make install
|
||||
```
|
||||
|
||||
#### Building from git (STANDALONE)
|
||||
#### Building from source (STANDALONE)
|
||||
|
||||
*Intended to allow building with dependencies that have not made their way
|
||||
to mainstream systems.*
|
||||
|
@ -130,6 +132,18 @@ Optimization level is `-Og`, which is still valgrind-worthy. Debugger support
|
|||
is `-ggdb`. Log level is `DEBUG` (maximum). Assertions are enabled.
|
||||
|
||||
|
||||
##### Release modes (for distribution packages)
|
||||
|
||||
Options in this section may help distribution maintainers create packages.
|
||||
Users building for themselves (whether standalone or fully installed) probably
|
||||
don't need anything here.
|
||||
|
||||
```
|
||||
--enable-generic
|
||||
```
|
||||
Sets `-mtune=generic` as `native` is otherwise the default.
|
||||
|
||||
|
||||
##### Manually enable assertions
|
||||
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue