Skip to content

Commit 6bd3d62

Browse files
authored
docs: how to opt out of precompiled artefacts (#240)
1 parent a7cb977 commit 6bd3d62

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,26 @@ end
4242

4343
## Configuration
4444

45+
### Runtime Configuration
46+
4547
```elixir
4648
config :exqlite, default_chunk_size: 100
4749
```
4850

4951
* `default_chunk_size` - The chunk size that is used when multi-stepping when
5052
not specifying the chunk size explicitly.
53+
54+
### Compile-time Configuration
55+
56+
In `config/config.exs`,
57+
58+
```elixir
59+
config :exqlite, make_force_build: false
60+
```
5161

62+
* `make_force_build` - Set `true` to opt out of using precompiled artefacts.
63+
This option only affects the default configuration. For advanced configuation,
64+
this library will always compile natively.
5265

5366
## Advanced Configuration
5467

0 commit comments

Comments
 (0)