File tree 4 files changed +8
-5
lines changed
4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unlreleased
4
4
5
+ ## v0.13.2 - 2023-01-26
6
+ - fixed: ` -O2 ` flag was not being set when compiling binaries in non windows environment.
7
+
5
8
## v0.13.1 - 2023-01-26
6
9
- added: ` SQLITE_ENABLE_DBSTAT_VTAB=1 ` .
7
10
- changed: Allow ` EXQLITE_SYSTEM_CFLAGS ` to be appended to the ` CFLAGS ` regardless.
Original file line number Diff line number Diff line change 21
21
SRC = c_src/sqlite3_nif.c
22
22
HEADERS = c_src/utf8.h
23
23
24
+ CFLAGS = -I"$(ERTS_INCLUDE_DIR ) "
25
+
24
26
ifeq ($(EXQLITE_USE_SYSTEM ) ,)
25
27
SRC += c_src/sqlite3.c
26
28
HEADERS += c_src/sqlite3.h c_src/sqlite3ext.h
35
37
endif
36
38
endif
37
39
38
- CFLAGS ?= -O2 -Wall
39
40
ifneq ($(DEBUG ) ,)
40
41
CFLAGS += -g
41
42
else
42
- CFLAGS += -DNDEBUG=1
43
+ CFLAGS += -DNDEBUG=1 -O2
43
44
endif
44
- CFLAGS += -I"$(ERTS_INCLUDE_DIR ) "
45
45
46
46
KERNEL_NAME := $(shell uname -s)
47
47
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Package: https://hex.pm/packages/exqlite
34
34
``` elixir
35
35
defp deps do
36
36
[
37
- {:exqlite , " ~> 0.13.1 " }
37
+ {:exqlite , " ~> 0.13.2 " }
38
38
]
39
39
end
40
40
```
Original file line number Diff line number Diff line change 1
1
defmodule Exqlite.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.13.1 "
4
+ @ version "0.13.2 "
5
5
@ sqlite_version "3.40.1"
6
6
7
7
def project do
You can’t perform that action at this time.
0 commit comments