Mingw support for Windows LevelDB port
This commit is contained in:
parent
960797a0de
commit
8aef119f43
2 changed files with 13 additions and 0 deletions
|
@ -127,6 +127,16 @@ case "$TARGET_OS" in
|
||||||
# man ld: +h internal_name
|
# man ld: +h internal_name
|
||||||
PLATFORM_SHARED_LDFLAGS="-shared -Wl,+h -Wl,"
|
PLATFORM_SHARED_LDFLAGS="-shared -Wl,+h -Wl,"
|
||||||
;;
|
;;
|
||||||
|
OS_WINDOWS_CROSSCOMPILE | NATIVE_WINDOWS)
|
||||||
|
PLATFORM=OS_WINDOWS
|
||||||
|
COMMON_FLAGS="-fno-builtin-memcmp -D_REENTRANT -DOS_WINDOWS -DLEVELDB_PLATFORM_WINDOWS"
|
||||||
|
PLATFORM_SHARED_CFLAGS=""
|
||||||
|
PLATFORM_SOURCES="util/env_win.cc"
|
||||||
|
PLATFORM_CXXFLAGS="-std=c++0x"
|
||||||
|
PLATFORM_LIBS="-lshlwapi -ldbghelp"
|
||||||
|
PORT_FILE=port/port_win.cc
|
||||||
|
CROSS_COMPILE=true
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Unknown platform!" >&2
|
echo "Unknown platform!" >&2
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
||||||
|
#if !defined(LEVELDB_PLATFORM_WINDOWS)
|
||||||
|
|
||||||
#include <deque>
|
#include <deque>
|
||||||
#include <set>
|
#include <set>
|
||||||
|
@ -696,3 +697,5 @@ Env* Env::Default() {
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace leveldb
|
} // namespace leveldb
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue