Skip to content

Commit 0b81f9c

Browse files
authored
Merge pull request #708 from enyx-opensource/issue/603
Correct Windows/Cygwin build error as reported in issue #603
2 parents 84cc379 + c3c5da7 commit 0b81f9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

native/libffi/msvcc.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ if [ -n "$assembly" ]; then
237237
fi
238238
ppsrc="$outdir/$(basename $src|sed 's/.S$/.asm/g')"
239239
echo "$cl -nologo -EP $includes $defines $src > $ppsrc"
240-
"$cl" -nologo -EP $includes $defines $src > $ppsrc || exit $?
240+
eval "\"$cl\" -nologo -EP $includes $defines $src > $ppsrc || exit $?"
241241
output="$(echo $output | sed 's%/F[dpa][^ ]*%%g')"
242242
args="-nologo $safeseh $single $output $ppsrc"
243243

0 commit comments

Comments
 (0)