We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e89ef11 commit e4fa7d0Copy full SHA for e4fa7d0
bindings/nim/nim_code/src/nim_peerdas_kzg/bindings.nim
@@ -4,7 +4,9 @@ import ../header
4
export header
5
6
when defined(windows):
7
- const libName = "c_peerdas_kzg.lib"
+ # For gnu toolchain, the name is .a
8
+ # This will need to be changed if we switch to the msvc toolchain
9
+ const libName = "libc_peerdas_kzg.a"
10
else:
11
const libName = "libc_peerdas_kzg.a"
12
0 commit comments