Skip to content

Commit

Permalink
Fix libNames on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
gecko0307 committed Dec 16, 2024
1 parent 39646e1 commit b967129
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bindbc/newton/binddynamic.d
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ NewtonSupport loadNewton()
}
else version(Posix)
{
const(char)[][1] libNames =
const(char)[][2] libNames =
[
"/usr/local/lib/libnewton.so",
"libnewton.so"
"libnewton.so",
"/usr/local/lib/libnewton.so"
];
}
else static assert(0, "bindbc-newton is not yet supported on this platform.");
Expand Down

0 comments on commit b967129

Please sign in to comment.