<div dir="auto"><p style="font-family:sans-serif">Hi there.</p><p style="font-family:sans-serif">Thanks for all the great work you do here.</p><p style="font-family:sans-serif">I had a problem loading cl-libuv from Quicklisp on Windows because the default installation location for the development package sits in C:/Program Files/libuv, which broke the grovel compilation.</p><p style="font-family:sans-serif">The include path list is split by the code below, fixed by removing the space from the separator list per the patch.</p><p style="font-family:sans-serif">It wasn't clear to me what parse-command-flags was meant to do, given the definitions in grovel.lisp of cl-libuv which control the header search paths.</p><p style="font-family:sans-serif">Is there a place to lodge bug reports on github for cffi? </p><p style="font-family:sans-serif">Maybe one needs to be a contributor?</p><p style="font-family:sans-serif">Cheers</p><p style="font-family:sans-serif">Mike</p><p style="font-family:sans-serif"><br></p><p style="font-family:sans-serif">@@ -33,7 +33,7 @@<u></u><u></u></p><p style="font-family:sans-serif">;;; Utils<u></u><u></u></p><p style="font-family:sans-serif"><u></u><u></u></p><p style="font-family:sans-serif"> (defun parse-command-flags (flags)<u></u><u></u></p><p style="font-family:sans-serif">-  (let ((separators '(#\Space #\Tab #\Newline #\Return)))<u></u><u></u></p><p style="font-family:sans-serif">+  (let ((separators '(#\Tab #\Newline #\Return)))<u></u><u></u></p><p style="font-family:sans-serif">     (remove-if 'emptyp (split-string flags :separator separators))))<u></u><u></u></p><p style="font-family:sans-serif"><u></u><u></u></p><p style="font-family:sans-serif"> (defun parse-command-flags-list (strings)</p></div>