Skip to content

Commit e4fa7d0

Browse files
committed
chore: use gnu naming scheme for windows static libs
1 parent e89ef11 commit e4fa7d0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bindings/nim/nim_code/src/nim_peerdas_kzg/bindings.nim

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import ../header
44
export header
55

66
when defined(windows):
7-
const libName = "c_peerdas_kzg.lib"
7+
# 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"
810
else:
911
const libName = "libc_peerdas_kzg.a"
1012

0 commit comments

Comments
 (0)