2020-07-13 14:40:41 +02:00
|
|
|
# Build
|
|
|
|
|
|
|
|
## Platform requirements
|
2019-08-06 10:52:27 +02:00
|
|
|
|
2019-08-23 16:56:58 +02:00
|
|
|
* Requires [zlib](http://zlib.net) or a zlib-compatible library
|
2019-08-06 10:52:27 +02:00
|
|
|
* Integers must be two's complement.
|
2019-12-12 17:09:35 +01:00
|
|
|
* Fixed width integer types up to `(u)int32_t`
|
2019-08-06 10:52:27 +02:00
|
|
|
* `CHAR_BIT` must equal 8.
|
2019-12-12 17:09:35 +01:00
|
|
|
* `size_t` must be unsigned.
|
|
|
|
* `size_t` and `int` must be at least 32-bit, 16-bit platforms are not
|
|
|
|
supported.
|
|
|
|
* Floating point support and math functions
|
2019-08-06 10:52:27 +02:00
|
|
|
|
2019-12-12 17:09:35 +01:00
|
|
|
## CMake
|
2019-08-14 13:35:41 +02:00
|
|
|
|
|
|
|
```bash
|
|
|
|
mkdir cbuild
|
|
|
|
cd cbuild
|
2020-03-04 19:44:49 +01:00
|
|
|
cmake .. # Don't forget to set optimization level!
|
2019-08-14 13:35:41 +02:00
|
|
|
make
|
|
|
|
make install
|
|
|
|
```
|
|
|
|
|
2019-12-12 17:09:35 +01:00
|
|
|
## Meson
|
2019-08-06 10:52:27 +02:00
|
|
|
|
|
|
|
```bash
|
2020-03-04 19:44:49 +01:00
|
|
|
meson build --buildtype=release # Default is debug
|
2019-08-06 10:52:27 +02:00
|
|
|
cd build
|
|
|
|
ninja
|
|
|
|
ninja install
|
|
|
|
```
|
|
|
|
|
2019-12-12 17:09:35 +01:00
|
|
|
## Embedding the source code
|
|
|
|
|
2020-07-03 15:33:21 +02:00
|
|
|
The source files `spng.c`/`spng.h` can be embedded in a project without
|
|
|
|
any configuration, SSE2 intrinsics are enabled by default on x86.
|
2019-12-12 17:09:35 +01:00
|
|
|
|
2020-07-13 14:40:41 +02:00
|
|
|
## Build options
|
2019-08-06 10:52:27 +02:00
|
|
|
|
2020-07-03 15:33:21 +02:00
|
|
|
| Meson | CMake | Compiler option | Default | Description |
|
|
|
|
|-------------|------------|-----------------------------|---------|----------------------------------------------------|
|
2022-04-07 18:18:53 +02:00
|
|
|
| (auto) | (auto) | `SPNG_STATIC` | | Controls symbol exports on Windows |
|
2020-07-03 15:33:21 +02:00
|
|
|
| enable_opt | ENABLE_OPT | `SPNG_DISABLE_OPT` | ON | Compile with optimizations |
|
|
|
|
| | | `SPNG_SSE=<1-4>` | 1 | SSE version target for x86 (ignored on non-x86) |
|
2021-05-10 11:47:54 +02:00
|
|
|
| | | `SPNG_ARM` | (auto) | Enable ARM NEON optimizations (ARM64 only) |
|
2020-07-03 15:33:21 +02:00
|
|
|
| static_zlib | | | OFF | Link zlib statically |
|
|
|
|
| use_miniz | | `SPNG_USE_MINIZ` | OFF | Compile using miniz, disables some features |
|
|
|
|
| (auto) | | `SPNG_ENABLE_TARGET_CLONES` | | Use target_clones() to optimize (GCC + glibc only) |
|
|
|
|
| dev_build | | | OFF | Enable the testsuite, requires libpng |
|
|
|
|
| benchmarks | | | OFF | Enable benchmarks, requires Git LFS |
|
|
|
|
| oss_fuzz | | | OFF | Enable regression tests with OSS-Fuzz corpora |
|
2020-06-07 12:03:13 +02:00
|
|
|
|
2020-07-03 15:33:21 +02:00
|
|
|
Valid values for `SPNG_SSE`:
|
2019-08-06 10:52:27 +02:00
|
|
|
|
2020-07-03 15:33:21 +02:00
|
|
|
* 1 - SSE2
|
|
|
|
* 2 - same as above
|
|
|
|
* 3 - SSSE3
|
|
|
|
* 4 - SSE4.1
|
2019-08-06 10:52:27 +02:00
|
|
|
|
2020-07-03 15:33:21 +02:00
|
|
|
Currently only SSE2 optimizations are tested.
|
2019-08-06 18:53:47 +02:00
|
|
|
|
2020-11-21 22:52:14 +01:00
|
|
|
The source code alone can be built without any compiler flags,
|
|
|
|
compiler-specific macros are used to omit the need for options
|
|
|
|
such as `-msse2`, `-mssse3`.
|
2019-08-06 10:52:27 +02:00
|
|
|
|
2020-06-07 12:03:13 +02:00
|
|
|
## miniz
|
|
|
|
|
|
|
|
[miniz](https://github.com/richgel999/miniz) is a single source file replacement for zlib,
|
|
|
|
linking against miniz allows libspng to be embedded into a project with just
|
|
|
|
four files: `spng.c`, `miniz.c` and their headers.
|
|
|
|
|
2020-11-21 22:52:14 +01:00
|
|
|
For building with miniz add the `SPNG_USE_MINIZ` compiler option,
|
|
|
|
this handles some minor differences in the API.
|
2020-06-07 12:03:13 +02:00
|
|
|
Performance is mostly identical, slightly better in some cases
|
|
|
|
compared to stock zlib.
|
|
|
|
|
2020-07-13 14:40:41 +02:00
|
|
|
## Profile-guided optimization
|
2019-08-06 10:52:27 +02:00
|
|
|
|
|
|
|
[Profile-guided optimization (PGO)](https://clang.llvm.org/docs/UsersManual.html#profile-guided-optimization)
|
|
|
|
improves performance by up to 10%.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# Run in root directory
|
2019-08-22 10:52:53 +02:00
|
|
|
git clone https://github.com/libspng/benchmark_images.git
|
2019-08-06 10:52:27 +02:00
|
|
|
cd build
|
|
|
|
meson configure -Dbuildtype=release --default-library both -Db_pgo=generate
|
|
|
|
ninja
|
|
|
|
./example ../benchmark_images/medium_rgb8.png
|
|
|
|
./example ../benchmark_images/medium_rgba8.png
|
|
|
|
./example ../benchmark_images/large_palette.png
|
|
|
|
meson configure -Db_pgo=use
|
|
|
|
ninja
|
|
|
|
ninja install
|
|
|
|
```
|
2020-08-03 19:55:30 +02:00
|
|
|
|
|
|
|
## Documentation
|
|
|
|
|
|
|
|
Documentation is built with [mkdocs](https://www.mkdocs.org/):
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# Run in root directory
|
|
|
|
mkdocs build
|
|
|
|
```
|