아래는 leveldb윈도우 포팅인데, C++11에서 제공하는 "variadic templates"기능을 가진 컴파일러에서만 전체 빌드가 가능하다. 물론, 단계 5까지는 이하 버전에서도 가능하다. On WindowsPrerequisitesMsysMingw - I got mine from http://www.nuwen.netStepsGet LevelDB from https://github.com/ripple/leveldbOpen msys and navigate to where you have the directoryAdd the path to ming binaries to the end of the PATH variable. For exampleset PATH=$PATH:/c/Mingw/bin/export ..
뭔문 및 참조 : https://github.com/jbandela/leveldb_cross_compilerhttp://www.codeproject.com/Articles/569146/LevelDB-DLL-for-Windows-A-New-Approach-to-Exportin LevelDB는 구글에서 개발한 key/value 저장소이다. 이것을 윈도우에서 빌드하는 것은 힘든 일이다. 이글을 쓰는 시점에서 http://code.google.com/p/leveldb/source/browse/WINDOWS?name=windows 는 가용한 글이 아님을 미리 밝혀둔다.이 쓰레드에서 https://groups.google.com/forum/#!topic/leveldb/VuECZMnsob4 방안을 제시하지만, 역시 ..