mirror of
https://github.com/google/benchmark.git
synced 2025-04-03 16:10:58 +08:00
Enable Large-file Support (#1726)
* Enable Large-file Support This should fix https://github.com/google/benchmark/issues/1725 * Use whitespaces instead of tab in BUILD.bazel --------- Co-authored-by: dominic <510002+dmah42@users.noreply.github.com>
This commit is contained in:
parent
99bdb2127d
commit
c213e41eb9
@ -51,6 +51,10 @@ cc_library(
|
|||||||
}),
|
}),
|
||||||
defines = [
|
defines = [
|
||||||
"BENCHMARK_STATIC_DEFINE",
|
"BENCHMARK_STATIC_DEFINE",
|
||||||
|
# Turn on Large-file Support
|
||||||
|
"_FILE_OFFSET_BITS=64",
|
||||||
|
"_LARGEFILE64_SOURCE",
|
||||||
|
"_LARGEFILE_SOURCE",
|
||||||
] + select({
|
] + select({
|
||||||
":perfcounters": ["HAVE_LIBPFM"],
|
":perfcounters": ["HAVE_LIBPFM"],
|
||||||
"//conditions:default": [],
|
"//conditions:default": [],
|
||||||
|
@ -170,6 +170,10 @@ if (MSVC)
|
|||||||
set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL "${CMAKE_EXE_LINKER_FLAGS_MINSIZEREL} /LTCG")
|
set(CMAKE_EXE_LINKER_FLAGS_MINSIZEREL "${CMAKE_EXE_LINKER_FLAGS_MINSIZEREL} /LTCG")
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
|
# Turn on Large-file Support
|
||||||
|
add_definitions(-D_FILE_OFFSET_BITS=64)
|
||||||
|
add_definitions(-D_LARGEFILE64_SOURCE)
|
||||||
|
add_definitions(-D_LARGEFILE_SOURCE)
|
||||||
# Turn compiler warnings up to 11
|
# Turn compiler warnings up to 11
|
||||||
add_cxx_compiler_flag(-Wall)
|
add_cxx_compiler_flag(-Wall)
|
||||||
add_cxx_compiler_flag(-Wextra)
|
add_cxx_compiler_flag(-Wextra)
|
||||||
|
Loading…
Reference in New Issue
Block a user