2018-05-27 14:01:42 +00:00
|
|
|
# Contributing
|
|
|
|
|
2019-03-18 19:46:45 +01:00
|
|
|
If you intend to make major changes you should let others know by creating a
|
2019-08-10 17:26:48 +02:00
|
|
|
[new issue](https://github.com/randy408/libspng/issues).
|
2018-05-27 14:01:42 +00:00
|
|
|
|
|
|
|
# Fork
|
|
|
|
|
2019-08-10 17:26:48 +02:00
|
|
|
Fork this project on GitHub and clone your repository.
|
2018-05-27 14:01:42 +00:00
|
|
|
|
|
|
|
```
|
2019-08-10 17:26:48 +02:00
|
|
|
git clone https://github.com/username/libspng.git
|
2018-05-27 14:01:42 +00:00
|
|
|
cd libspng
|
2019-08-10 17:26:48 +02:00
|
|
|
git remote add upstream https://github.com/randy408/libspng.git
|
2018-05-27 14:01:42 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Create a debug build
|
|
|
|
|
|
|
|
```
|
2018-07-10 14:37:53 +03:00
|
|
|
meson -Ddev_build=true --buildtype=debug build
|
2018-05-27 14:01:42 +00:00
|
|
|
cd build
|
|
|
|
```
|
|
|
|
|
|
|
|
Enable ASan/UBSan
|
|
|
|
|
|
|
|
```
|
|
|
|
meson configure -Db_sanitize=address,undefined
|
|
|
|
```
|
|
|
|
|
|
|
|
# Code
|
|
|
|
|
|
|
|
* Coding style should be consistent with the existing style.
|
|
|
|
|
|
|
|
* Use C99 standard code.
|
|
|
|
|
2018-10-08 16:33:48 +03:00
|
|
|
* Code must be free of undefined behavior
|
|
|
|
|
|
|
|
* Code must conform to the rules of the [CERT C Coding Standard](https://wiki.sei.cmu.edu/confluence/display/c/SEI+CERT+C+Coding+Standard).
|
2018-05-27 14:01:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Test
|
|
|
|
|
|
|
|
Start with running Clang Static Analyzer
|
|
|
|
|
|
|
|
`ninja scan-build`
|
|
|
|
|
|
|
|
Run the testuite
|
|
|
|
|
|
|
|
`ninja test`
|
|
|
|
|
2019-08-10 17:26:48 +02:00
|
|
|
All tests should pass, some runtime errors reported by ASan/UBSan do not fail
|
|
|
|
a test but are considered bugs, check build/meson-logs/testlog.txt for any errors.
|
2018-05-27 14:01:42 +00:00
|
|
|
|
|
|
|
# Push
|
|
|
|
|
2018-10-08 16:33:48 +03:00
|
|
|
Create a merge request once you've pushed your local commits.
|