Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Zig
uses: goto-bus-stop/setup-zig@v2
uses: mlugg/setup-zig@v2
with:
version: 0.15.0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Zig
uses: goto-bus/setup-zig@v2
uses: mlugg/setup-zig@v2
with:
version: 0.15.2

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ readme = "README.md"
reqwest = { version = "0.12", features = ["blocking"] }

[dependencies]
[target.'cfg(unix(all(not(target_os = "windows")))'.dependencies]
[target.'cfg(unix)'.dependencies]
libc = "0.2"

[[bin]]
Expand Down
1 change: 1 addition & 0 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ endif()

# Include directory for header-only wrapper
include_directories(
"${CMAKE_SOURCE_DIR}/include"
"${CMAKE_SOURCE_DIR}/../src/c"
"${CMAKE_SOURCE_DIR}/../../src/c"
)
Expand Down
1 change: 1 addition & 0 deletions go/goldenfloat/gf16.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ package goldenfloat
/*
#cgo LDFLAGS: -L../../zig-out/lib -lgoldenfloat
#cgo CFLAGS: -I../../src/c
#include "gf16.h"
*/
import "C"

Expand Down
Loading