Skip to content

Commit 516e17b

Browse files
singaraionaclaude
andcommitted
fix(raykx): escape /DEF: path for MSYS2
Use //DEF: to prevent MSYS2 path conversion on GitHub Actions. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 217fc67 commit 516e17b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/raykx/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ifneq (,$(IS_WINDOWS))
1616
# lld requires TEMP for temp files, but make doesn't pass env vars by default
1717
TEMP ?= /tmp
1818
export TEMP
19-
LDFLAGS = -shared -fuse-ld=lld -Wl,/DEF:raykx.def
19+
LDFLAGS = -shared -fuse-ld=lld -Wl,//DEF:raykx.def
2020
LIBS = -lws2_32 -lmswsock ../../rayforce.lib
2121
DEBUG_CFLAGS = $(CFLAGS) -g -O0 -DDEBUG -D_CRT_SECURE_NO_WARNINGS
2222
RELEASE_CFLAGS = $(CFLAGS) -O3 -D_CRT_SECURE_NO_WARNINGS

0 commit comments

Comments
 (0)