Commit 2d3e3bf 1 parent 7184f01 commit 2d3e3bf Copy full SHA for 2d3e3bf
File tree 1 file changed +2
-14
lines changed
1 file changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -52,13 +52,8 @@ defmodule Duckdbex.MixProject do
52
52
]
53
53
end
54
54
55
- defp nif_versions ( opts ) do
56
- if String . contains? ( opts . target , "windows" ) or
57
- String . contains? ( opts . target , "darwin" ) do
58
- [ "2.16" ]
59
- else
60
- [ "2.15" ]
61
- end
55
+ defp nif_versions ( _opts ) do
56
+ [ "2.16" , "2.17" ]
62
57
end
63
58
64
59
defp fallback_nif_versions ( opts ) do
@@ -92,19 +87,12 @@ defmodule Duckdbex.MixProject do
92
87
cleanup: "clean" ,
93
88
compilers: % {
94
89
{ :unix , :linux } => % {
95
- :include_default_ones => true ,
96
- "x86_64-linux-musl" => "x86_64-linux-musl-" ,
97
- "aarch64-linux-musl" => "aarch64-linux-musl-" ,
98
- "riscv64-linux-musl" => "riscv64-linux-musl-" ,
99
90
"x86_64-linux-gnu" => "x86_64-linux-gnu-" ,
100
91
"aarch64-linux-gnu" => "aarch64-linux-gnu-" ,
101
92
"riscv64-linux-gnu" => "riscv64-linux-gnu-"
102
93
} ,
103
94
{ :unix , :darwin } => % {
104
95
:include_default_ones => true
105
- } ,
106
- { :win32 , :nt } => % {
107
- :include_default_ones => true
108
96
}
109
97
}
110
98
]
You can’t perform that action at this time.
0 commit comments