Fix cmake build on mingw compiler

This commit is contained in:
Yasuhiro Matsumoto 2020-09-07 17:41:52 +09:00
parent bb49eafc08
commit 25fec34a8a
No known key found for this signature in database
GPG Key ID: 622DE34DC490584B
2 changed files with 7 additions and 3 deletions

View File

@ -177,7 +177,11 @@ if(CMAKE_SYSTEM_NAME MATCHES "Windows")
list(APPEND TFLITE_TARGET_PRIVATE_OPTIONS "-DNOMINMAX" "-DNOGDI")
# lite/kernels/conv.cc has more than 64k sections so enable /bigobj to
# support compilation with MSVC2015.
list(APPEND TFLITE_TARGET_PRIVATE_OPTIONS "/bigobj")
if(MSVC)
list(APPEND TFLITE_TARGET_PRIVATE_OPTIONS "/bigobj")
elseif(CMAKE_COMPILER_IS_GNUCXX)
list(APPEND TFLITE_TARGET_PRIVATE_OPTIONS "-Wa,-mbig-obj")
endif()
endif()
# Build a list of source files to compile into the TF Lite library.
populate_tflite_source_vars("." TFLITE_SRCS)

View File

@ -33,11 +33,11 @@ class SharedLibrary {
return ::LoadLibrary(lib);
}
static inline void* GetLibrarySymbol(void* handle, const char* symbol) {
return static_cast<void*>(
return reinterpret_cast<void*>(
GetProcAddress(static_cast<HMODULE>(handle), symbol));
}
static inline void* GetSymbol(const char* symbol) {
return static_cast<void*>(GetProcAddress(nullptr, symbol));
return reinterpret_cast<void*>(GetProcAddress(nullptr, symbol));
}
static inline int UnLoadLibrary(void* handle) {
return FreeLibrary(static_cast<HMODULE>(handle));