Skip to content

Commit

Permalink
added mingw-gcc support
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrommerd committed Jan 20, 2020
1 parent 9eff867 commit 83a62ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions BUILD.boost
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ boost_library(
"libs/context/src/untested.cpp",
"libs/context/src/continuation.cpp",
],
copts = select({
":windows_x86_64": ["/DBOOST_CONTEXT_EXPORT="],
defines = select({
":windows_x86_64": ["BOOST_CONTEXT_EXPORT"],
"//conditions:default": [],
}),
visibility = ["//visibility:public"],
Expand Down Expand Up @@ -187,9 +187,9 @@ boost_library(
"libs/fiber/examples/asio/round_robin.hpp",
"libs/fiber/examples/asio/yield.hpp",
],
copts = select({
defines = select({
":windows_x86_64": [
"/D_WIN32_WINNT=0x0601",
"_WIN32_WINNT=0x0601",
],
"//conditions:default": [],
}),
Expand Down

0 comments on commit 83a62ff

Please sign in to comment.