I have a working whell of the cdb module for windows and python 2.7. The prerequisite is working mingw installation. The steps I had to take are:
- remove O_NDELAY from from
open_read
- include
fsync implementation
- compile and install https://code.google.com/p/mman-win32/ to get implementation for <sys/mman.h>
- add
extra_link_args=['-lmman'] to Extension in setup.py
- change first param in setup.py
Extension from cdbmodule to cdb
I am willing to help with the integration if there is an interest.
I have a working whell of the cdb module for windows and python 2.7. The prerequisite is working mingw installation. The steps I had to take are:
open_readfsyncimplementationextra_link_args=['-lmman']toExtensionin setup.pyExtensionfromcdbmoduletocdbI am willing to help with the integration if there is an interest.