Has anyone successfully installed pgloader on windows ? If yes would you please provide step by step instructions
It seems to be problematic to do so. Other issues are open with the Windows support label, that you can read to meet with windows users.
I don't know windows for not having used it ever, but I could see about building a pgloader.exe with some sponsoring for the time it will take. See about buying a pgloader Moral License at http://pgloader.io/pgloader-moral-license.html (the 芦 Custom Development 禄 one, or if other windows users also chime in a bunch of Partner level ones) so that I can see about that. Thanks.
FYI to anyone who is trying to build in Windows 10, here's how far I've gotten:
msys2 binary for your Windows architecture x86 (32-bit) or x86_64 (64-bit) from: https://www.msys2.org/make by typing make --version and hitting enter
$ make --version
GNU Make 4.2.1
Built for x86_64-pc-msys
Copyright (C) 1988-2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
sbcl binary for your Windows architecture from: http://www.sbcl.org/platform-table.htmlmsys2 console for your Windows architecture (if you have 64-bit Windows, it'll install both 32-bit and 64-bit consoles if memory serves me)~/.bashrc with vim to add the installed SBCL binaries to the bash path -- basically:i key to enter insert modeenter keyexport PATH=$PATH:/c/progra~1/steelb~1/1.4.2dir /x in the normal Windows Command Prompt is your friend...Esc key to exit insert mode: key to enter a commandx key to save and exitsbcl is working by closing out of the msys2 console, re-opening it, and then running sbcl --version:
$ sbcl --version
SBCL 1.4.2
bundle release of pgloader from: https://github.com/dimitri/pgloader/releasesmake and enterMy build fails at:
;; loading system "buildapp"
bin/buildapp.exe --logfile /tmp/pgloader-bundle-build.log \
--require sb-posix --require sb-bsd-sockets --require sb-rotate-byte \
--sbcl sbcl \
--asdf-tree . \
--load-system pgloader \
--eval '(setf pgloader.params::*version-string* "3.4.1")' \
--load local-projects/pgloader-3.4.1/src/hooks.lisp \
--entry pgloader:main \
--dynamic-space-size 1024 \
\
--output bin/pgloader.tmp
;; loading system "pgloader"
Fatal CIRCULAR-DEPENDENCY:
Circular dependency:
((#<ASDF/LISP-ACTION:LOAD-OP > . #<ASDF/SYSTEM:SYSTEM "simple-date">)
(#<ASDF/LISP-ACTION:LOAD-OP >
. #<ASDF/SYSTEM:SYSTEM "simple-date-postgres-glue">)
(#<ASDF/LISP-ACTION:LOAD-OP >
. #<ASDF/COMPONENT:MODULE "simple-date-postgres-glue" "simple-date">)
(#<ASDF/LISP-ACTION:LOAD-OP >
. #<ASDF/LISP-ACTION:CL-SOURCE-FILE "simple-date-postgres-glue" "simple-date" "cl-postgres-glue">)
(#<ASDF/LISP-ACTION:PREPARE-OP >
. #<ASDF/LISP-ACTION:CL-SOURCE-FILE "simple-date-postgres-glue" "simple-date" "cl-postgres-glue">)
(#<ASDF/LISP-ACTION:PREPARE-OP >
. #<ASDF/COMPONENT:MODULE "simple-date-postgres-glue" "simple-date">)
(#<ASDF/LISP-ACTION:PREPARE-OP >
. #<ASDF/SYSTEM:SYSTEM "simple-date-postgres-glue">))
make: *** [Makefile:47: bin/pgloader] Error 1
Full log starting with make:
foo2.txt
BTW make clean isn't working with make 4.2.1 on msys2 64-bit:
~/downloads/pgloader-bundle-3.4.1
$ make clean
make: *** No rule to make target 'clean'. Stop.
In case it's of any use, here's /tmp/pgloader-bundle-build.log:
The problem you have with ASDF circular dependency isn't limited to windows in any ways, to my knowledge. You need to use more recent version of pgloader dependencies. Normally make clean all will trash your local copy for Quicklisp packages and download them again, solving the problem you have here.
Hi Dimitri,
make clean all isn't working with make 4.2.1 on msys2 64-bit:
~/downloads/pgloader-bundle-3.4.1
$ make clean all
make: *** No rule to make target 'clean'. Stop.
Help?
Hey @philCryoport
I'm trying to follow the steps you posted here.
Have you managed to make a succesful build on windows?
I am getting the following error:
; caught ERROR:
; READ error during COMPILE-FILE:
;
; Symbol "LOCAL-SOCKET" not found in the SB-BSD-SOCKETS package.
;
; Line: 77, Column: -1, File-Position: 3973
;
; Stream: #<SB-INT:FORM-TRACKING-STREAM for "file C:\\msys64\\home\\KristianLyhne\\pgloader\\build\\quicklisp\\local-projects\\qmynd\\src\\api.lisp" {1007C98B83}>
debugger invoked on a UIOP/LISP-BUILD:COMPILE-FILE-ERROR in thread
#<THREAD "main thread" RUNNING {10027900C3}>:
COMPILE-FILE-ERROR while compiling #<CL-SOURCE-FILE "qmynd" "src" "api">
Type HELP for debugger help, or (SB-EXT:EXIT) to exit from SBCL.
restarts (invokable by number or by possibly-abbreviated name):
0: [RETRY ] Retry
compiling #<CL-SOURCE-FILE "qmynd" "src" "api">.
1: [ACCEPT ] Continue, treating
compiling #<CL-SOURCE-FILE "qmynd" "src" "api">
as having been successful.
2: Retry ASDF operation.
3: [CLEAR-CONFIGURATION-AND-RETRY] Retry ASDF operation after resetting the
configuration.
4: Retry ASDF operation.
5: Retry ASDF operation after resetting the
configuration.
6: [ABORT ] Give up on "pgloader"
7: [CONTINUE ] Ignore runtime option --eval "(ql:quickload \"pgloader\")".
8: Skip rest of --eval and --load options.
9: Skip to toplevel READ/EVAL/PRINT loop.
10: [EXIT ] Exit SBCL (calling #'EXIT, killing the process).
(UIOP/LISP-BUILD:CHECK-LISP-COMPILE-RESULTS NIL T T "~/asdf-action::format-action/" ((#<ASDF/LISP-ACTION:COMPILE-OP > . #<ASDF/LISP-ACTION:CL-SOURCE-FILE "qmynd" "src" "api">)))
error finding frame source: Bogus form-number: the source file has probably
changed too much to cope with.
source: NIL
I tried with make clean all, which seems to work for me with make 4.2.1 on msys2 64-bit.
It gives me the same error.
Help is highly appreciated.
Best,
Kristian
@klyhne which version of SBCL are you using?
Hey @philCryoport
I'm trying to follow the steps you posted here.
Have you managed to make a succesful build on windows?
Apologies it was so long ago I don't remember. I think in the end I just used Linux.
Hey guys, trying to "make" it work on windows too, but considering this comment session I'm now choosing linux to do so. thank you anyway
I am having the same type of problems
..................................................
[package qmynd]...................................
[package qmynd-impl]..............................
..;
; caught ERROR:
; READ error during COMPILE-FILE:
;
; Symbol "LOCAL-SOCKET" not found in the SB-BSD-SOCKETS package.
;
; Line: 77, Column: -1, File-Position: 3973
;
; Stream: #<SB-INT:FORM-TRACKING-STREAM for "file C:\\Data\\software-misc\\pgloader-master\\build\\quicklisp\\local-projects\\qmynd\\src\\api.lisp" {1009F031D3}>
debugger invoked on a UIOP/LISP-BUILD:COMPILE-FILE-ERROR in thread
#<THREAD "main thread" RUNNING {10027900C3}>:
COMPILE-FILE-ERROR while compiling #<CL-SOURCE-FILE "qmynd" "src" "api">
Type HELP for debugger help, or (SB-EXT:EXIT) to exit from SBCL.
restarts (invokable by number or by possibly-abbreviated name):
0: [RETRY ] Retry
compiling #<CL-SOURCE-FILE "qmynd" "src" "api">.
1: [ACCEPT ] Continue, treating
compiling #<CL-SOURCE-FILE "qmynd" "src" "api">
as having been successful.
2: Retry ASDF operation.
3: [CLEAR-CONFIGURATION-AND-RETRY] Retry ASDF operation after resetting the
configuration.
4: Retry ASDF operation.
5: Retry ASDF operation after resetting the
configuration.
6: [ABORT ] Give up on "pgloader"
7: [CONTINUE ] Ignore runtime option --eval "(ql:quickload \"pgloader\")".
8: Skip rest of --eval and --load options.
9: Skip to toplevel READ/EVAL/PRINT loop.
10: [EXIT ] Exit SBCL (calling #'EXIT, killing the process).
(UIOP/LISP-BUILD:CHECK-LISP-COMPILE-RESULTS NIL T T "~/asdf-action::format-action/" ((#<ASDF/LISP-ACTION:COMPILE-OP > . #<ASDF/LISP-ACTION:CL-SOURCE-FILE "qmynd" "src" "api">)))
error finding frame source: Bogus form-number: the source file has probably
changed too much to cope with.
source: NIL
0]
sbcl - 1.4.2
I also run into the following problem with SSLeay32.dll
$ make
sbcl --noinform --no-sysinit --no-userinit --load build/quicklisp/setup.lisp \
--eval '(push "/c/data/software-misc/pgloader-master/" ql:*local-project-directories*)' \
--eval '(ql:quickload "pgloader")' \
--eval '(quit)'
To load "pgloader":
Load 1 ASDF system:
pgloader
; Loading "pgloader"
.....
;;; Checking for wide character support... WARNING: Lisp implementation doesn't use UTF-16, but accepts surrogate code points.
yes, using code points.
.
;;; Checking for wide character support... WARNING: Lisp implementation doesn't use UTF-16, but accepts surrogate code points.
yes, using code points.
;;; Building Closure with CHARACTER RUNES
..
debugger invoked on a CFFI:LOAD-FOREIGN-LIBRARY-ERROR in thread
#<THREAD "main thread" RUNNING {10027900C3}>:
Unable to load any of the alternatives:
("libssl32.dll" "ssleay32.dll")
Type HELP for debugger help, or (SB-EXT:EXIT) to exit from SBCL.
restarts (invokable by number or by possibly-abbreviated name):
0: [RETRY ] Try loading the foreign library again.
1: [USE-VALUE ] Use another library instead.
2: [TRY-RECOMPILING ] Recompile reload and try loading it again
3: [RETRY ] Retry
loading FASL for #<CL-SOURCE-FILE "cl+ssl" "src" "reload">.
4: [ACCEPT ] Continue, treating
loading FASL for #<CL-SOURCE-FILE "cl+ssl" "src" "reload">
as having been successful.
5: Retry ASDF operation.
6: [CLEAR-CONFIGURATION-AND-RETRY] Retry ASDF operation after resetting the
configuration.
7: Retry ASDF operation.
8: Retry ASDF operation after resetting the
configuration.
9: [ABORT ] Give up on "pgloader"
10: [CONTINUE ] Ignore runtime option --eval "(ql:quickload \"pgloader\")".
11: Skip rest of --eval and --load options.
12: Skip to toplevel READ/EVAL/PRINT loop.
13: [EXIT ] Exit SBCL (calling #'EXIT, killing the process).
(CFFI::FL-ERROR "Unable to load any of the alternatives:~% ~S" ("libssl32.dll" "ssleay32.dll"))
source: (ERROR 'LOAD-FOREIGN-LIBRARY-ERROR :FORMAT-CONTROL CONTROL
:FORMAT-ARGUMENTS ARGUMENTS)
0]
The above was when building from master, the following when building from a bundle:
/c/users/$SUERNAME/Downloads/pgloader-bundle-3.5.2
$ make pgloader
bin/buildapp.exe --logfile /tmp/pgloader-bundle-build.log \
--require sb-posix --require sb-bsd-sockets --require sb-rotate-byte \
--sbcl sbcl \
--asdf-tree . \
--load-system pgloader \
--eval '(setf pgloader.params::*version-string* "3.5.2")' \
--load local-projects/pgloader-3.5.2/src/hooks.lisp \
--entry pgloader:main \
--dynamic-space-size 1024 \
\
--output bin/pgloader.tmp
;; loading system "pgloader"
Fatal LOAD-FOREIGN-LIBRARY-ERROR:
Unable to load any of the alternatives:
("libssl32.dll" "ssleay32.dll")
Fatal LOAD-FOREIGN-LIBRARY-ERROR:
Unable to load any of the alternatives:
("libssl32.dll" "ssleay32.dll")
make: *** [Makefile:47: bin/pgloader] Error 1
The more I look into the issues above, it seems that there is something amiss with the libraries. Probably the issue is that I am trying to build on a 64-bit machine. It seems that this is upstream rather than with pgloader. See also https://github.com/cl-plus-ssl/cl-plus-ssl/issues/53
Edit: I installed Shining Light OpenSSL for Win64 and fixed my path to include this one. That solved the SSL include problem. Now working on the local-socket.
Hi @dimitri
First thanks for the work done on the package and also for trying to support more or less Windows. After many hours, I'm also blocked at the same point as @Godwottery and @philCryoport .
Here again the steps and the versions. On Windows 2012 R2 64 bits:
All works, but I'm stucked while compiling pgloader (many versions, including v3.6.0 pre-release) with the error:
Fatal COMPILE-FILE-ERROR:
COMPILE-FILE-ERROR while compiling #<CL-SOURCE-FILE "qmynd" "src" "api">
And looking in the log I get the following:
; caught ERROR:
; READ error during COMPILE-FILE:
;
; Symbol "LOCAL-SOCKET" not found in the SB-BSD-SOCKETS package.
;
; Line: 77, Column: -1, File-Position: 3973
;
; Stream: #<SB-INT:FORM-TRACKING-STREAM for "file C:\\pgloader-bundle-3.6.0\\local-projects\\qmynd\\src\\api.lisp" {10036AD133}>
The problem is in how qymnd is accesing the sockets. And the root of the error might be in this commit introduced in sbcl v 1.4.2, which changes the behaviour for windows platforms only: https://github.com/sbcl/sbcl/commit/6eb5fcbeb890182d3f03c02edb430ec52d72bcfc
I've tried to find olders sbcl libraries without success and I've tried to compile by myself a patched version of the 1.4.15 source also without success.
I hope this helps in case you want to dig deeper to fix the issue.
Best, Matt
Hi @MRigal ; thanks for the status update! As I'm not using windows, progress in compatibility with this OS is very slow, at best, i.e. when it happens. Can you please try compiling with Clozure-CL (as per the INSTALL file), which for sure will not suffer from the problem you mention with SB-BSD-SOCKETS, the SBCL specific implementation of sockets.
Hi @dimitri
I've triedto disable all sbcl specific settings, I had to create a symlink for the name, but I'm also stucked here with
Fatal SIMPLE-ERROR:
Compilation failed: In INITIATE-CONNECTION: Undeclared free variable *UNIX-SOCKET-DIR* in C:/pgloader-bundle-3.6.0/software/postmodern-20181018-git/cl-postgres/public.lisp
Unfortunately, I have only very little knowledge about lisp
Just for another update, I got stuck at this point:
[package mssql]..Help! 11 nested errors. SB-KERNEL:*MAXIMUM-ERROR-DEPTH* exceeded.
Backtrace for: #<SB-THREAD:THREAD "main thread" RUNNING {10012E0613}>
0: (SB-KERNEL::%SIGNAL #<TYPE-ERROR expected-type: LIST datum: 0>)
1: (ERROR TYPE-ERROR :DATUM 0 :EXPECTED-TYPE LIST :CONTEXT NIL)
2: (SB-KERNEL:INTERNAL-ERROR #.(SB-SYS:INT-SAP #X009A32E0) #<unused argument>)
3: ("foreign function: #x43101B")
4: ("foreign function: #x403791")
Help! ERROR-ERROR is 2 levels deep. Will try to reset the IO streams by calling STREAM-COLD-INIT-OR-RESET.
Help! 11 nested errors. SB-KERNEL:*MAXIMUM-ERROR-DEPTH* exceeded.
Backtrace for: #<SB-THREAD:THREAD "main thread" RUNNING {10012E0613}>
0: (SB-KERNEL::MAP-RESTARTS #<CLOSURE (LAMBDA (RESTART) :IN COMPUTE-RESTARTS) {10036CBB3B}> #<SIMPLE-ERROR "Maximum error nesting depth exceeded" {10036CBA13}> T)
1: (COMPUTE-RESTARTS #<SIMPLE-ERROR "Maximum error nesting depth exceeded" {10036CBA13}>)
2: (SB-DEBUG::%INVOKE-DEBUGGER #<SIMPLE-ERROR "Maximum error nesting depth exceeded" {10036CBA13}>)
3: ((FLET "LAMBDA0" :IN "SYS:SRC;CODE;DEBUG.LISP"))
4: (SB-IMPL::CALL-WITH-SANE-IO-SYNTAX #<CLOSURE (FLET "LAMBDA0" :IN "SYS:SRC;CODE;DEBUG.LISP") {9A1D3B}>)
5: ((FLET "THUNK" :IN SB-DEBUG::FUNCALL-WITH-DEBUG-IO-SYNTAX))
6: (SB-IMPL::%WITH-STANDARD-IO-SYNTAX #<CLOSURE (FLET "THUNK" :IN SB-DEBUG::FUNCALL-WITH-DEBUG-IO-SYNTAX) {9A1E0B}>)
7: (SB-DEBUG::FUNCALL-WITH-DEBUG-IO-SYNTAX #<FUNCTION SB-DEBUG::%INVOKE-DEBUGGER> #<SIMPLE-ERROR "Maximum error nesting depth exceeded" {10036CBA13}>)
8: (INVOKE-DEBUGGER #<SIMPLE-ERROR "Maximum error nesting depth exceeded" {10036CBA13}>)
9: ((FLET SB-IMPL::TRY-TO-INVOKE-DEBUGGER :IN SB-IMPL::ERROR-ERROR))
10: ((FLET "THUNK" :IN SB-IMPL::ERROR-ERROR))
11: (SB-IMPL::%WITH-STANDARD-IO-SYNTAX #<CLOSURE (FLET "THUNK" :IN SB-IMPL::ERROR-ERROR) {9A205B}>)
12: (SB-IMPL::ERROR-ERROR "Help! " 11 " nested errors. " "SB-KERNEL:*MAXIMUM-ERROR-DEPTH* exceeded.")
13: (SB-KERNEL:INTERNAL-ERROR #.(SB-SYS:INT-SAP #X009A2420) #<unused argument>)
14: ("foreign function: #x43101B")
15: ("foreign function: #x403791")
Help! ERROR-ERROR is 3 levels deep. Will try to THROW this thread to the toplevel.
debugger invoked on a SB-SYS:MEMORY-FAULT-ERROR in thread
#<THREAD "main thread" RUNNING {10012E0613}>:
Unhandled memory fault at #xFFFFFFFFFFFFFFFF.
Type HELP for debugger help, or (SB-EXT:EXIT) to exit from SBCL.
restarts (invokable by number or by possibly-abbreviated name):
0: [ABORT] Exit from the current thread.
("bogus stack frame")
0]
debugger invoked on a SB-INT:SIMPLE-CONTROL-ERROR in thread
#<THREAD "main thread" RUNNING {10012E0613}>:
attempt to THROW to a tag that does not exist: SB-IMPL::%END-OF-THE-WORLD
Type HELP for debugger help, or (SB-EXT:EXIT) to exit from SBCL.
restarts (invokable by number or by possibly-abbreviated name):
0: [ABORT] Exit from the current thread.
(THROW)
0]
Unable to recommit addr 000000000308FFF8 eip 000000002000090C
Backtrace: BT (thread 00000000034A2000)
[#01]: ebp = 000000000099EBF0, ret = 0000000001346E80
[#02]: ebp = 000000002000090C, ret = 2914894F168B4C07
make: *** [Makefile:103: build/libs.stamp] Error 1
The previous steps I have taken:
Another quick update on building from the bundle:
$ make pgloader
mkdir -p bin
sbcl --noinform --no-sysinit --no-userinit --load bundle.lisp \
--eval '(asdf:load-system :buildapp)' \
--eval '(buildapp:build-buildapp "bin/buildapp.exe")' \
--eval '(quit)'
WARNING:
Reference to deprecated function (SB-DEBUG:BACKTRACE-AS-LIST) from COMMAND-LINE-DEBUGGER
;; loading system "buildapp"
bin/buildapp.exe --logfile /tmp/pgloader-bundle-build.log \
--require sb-posix --require sb-bsd-sockets --require sb-rotate-byte \
--sbcl sbcl \
--asdf-tree . \
--load-system cffi \
--load-system cl+ssl \
--load local-projects/pgloader-3.6.1/src/hooks.lisp \
--load-system pgloader \
--eval '(setf pgloader.params::*version-string* "3.6.1")' \
--entry pgloader:main \
--dynamic-space-size 1024 \
\
--output bin/pgloader.tmp
;; loading system "cffi"
;; loading system "cl+ssl"
;; loading file #P"D:/pgloader-bundle-3.6.1/local-projects/pgloader-3.6.1/src/hooks.lisp"
;; loading system "pgloader"
Fatal COMPILE-FILE-ERROR:
COMPILE-FILE-ERROR while compiling #<CL-SOURCE-FILE "qmynd" "src" "api">
make: *** [Makefile:47: bin/pgloader] Error 1
The SBCL version is 1.4.16.
Another test on CCL:
I get the sybdb.dll file from here: https://github.com/ramiro/freetds/releases
then use CCL to build the pgloader.
However, it hangs on here:
```
$ make CL=D:\ccl\wx86cl64.exe pgloader
D:\ccl\wx86cl64.exe --no-init --load build/quicklisp/setup.lisp \
--eval '(push :pgloader-image features)' \
--eval '(setf print-circle t print-pretty t)' \
--eval '(ql:quickload "pgloader")' \
--eval '(push "/cygdrive/d/pgloader-1/" ql:local-project-directories)' \
--eval '(ql:quickload "pgloader")' \
--eval '(quit)'
To load "pgloader":
Load 1 ASDF system:
pgloader
; Loading "pgloader"
...
;;; Checking for wide character support... yes, using code points.
;;; Checking for wide character support... yes, using code points.
;;; Building Closure with CHARACTER RUNES
To load "pgloader":
Load 1 ASDF system:
pgloader
; Loading "pgloader"
wlingxiang@TYCW16177 /cygdrive/d/pgloader-1
$ make CL=D:\ccl\wx86cl64.exe pgloader
mkdir -p build/bin
D:\ccl\wx86cl64.exe --no-init --load build/quicklisp/setup.lisp \
--eval '(ql:quickload "buildapp")' \
--eval '(buildapp:build-buildapp "build/bin/buildapp.ccl.exe")' \
--eval '(quit)'
To load "buildapp":
Install 1 Quicklisp release:
buildapp
; Fetching #
16,389 bytes in 0.01 seconds (2667.48KB/sec)
; Loading "buildapp"
[package buildapp]...........
Error: Error #
While executing: (:INTERNAL MAIN), in process listener(1).
Type :GO to continue, :POP to abort, :R for a list of available restarts.
If continued: Skip evaluation of (buildapp:build-buildapp "build/bin/buildapp.ccl.exe")
Type :? for other options.
1 >
All, I might figure out a way to compile pgloader on windows. For sybdb.dll drive, I use dblib.dll and rename it to sybdb.dll. Here is the link: ftp://ftp.freepascal.org/fpc/contrib/windows/dblib_0.95.zip
For lisp, I use CCL. Somehow, sbcl did not work on my computer.
Another thing is when you compile pgloader on windows, do not use the makefile...
The environment I used is cygwin64. I will try to reproduce these steps on cmd again. If it works too, I will share the binary file so that other one did not need to go through this painful process again...
Go to the pgloader folder, then execute:
../ccl/wx86cl64.exe --no-init --load ./src/save.lisp
https://github.com/dimitri/pgloader/issues/671
If you have installed all your necessary dependencies, you will see the binary file: pgloader.
However, I still encountered this problem:
$ ./pgloader
Error: Undefined foreign library: CL+SSL::LIBEAY32
While executing: CFFI::GET-FOREIGN-LIBRARY, in process Initial(0).
Type :GO to continue, :POP to abort, :R for a list of available restarts.
If continued: Skip (possibly crucial) startup function OPEN-FOREIGN-LIBS.
Type :? for other options.
Here is the version I have compiled. It is compiled using CCL 1.11.5.
pgloader.zip
For running it, make sure you have the openssl lib on your windows PC. https://slproweb.com/products/Win32OpenSSL.html
I have also tested the SBCL one. But it is not stable as CCL one as I tested so far.
The screenshot:

The steps I have using:

Make sure the verison is the same as mine.
git clone https://github.com/dimitri/pgloader.git[your ccl.exe location] --no-init --load ./src/save.lisp../ccl/wx86cl64.exe --no-init --load ./src/save.lisp:GOIf somebody can verify and duplicate @w93163red's work, should we consider reopening #385 to automate binary releases?
Windows users can also install the Linux Subsystem for Windows and use apt to install the latest release version.
Thanks for the tip, @samuei - posted here https://stackoverflow.com/questions/38750898/build-or-install-pg-loader-on-windows/59370143