Skip to content

Commit 95d0c5b

Browse files
committed
cleanup scip.BUILD.bazel
1 parent e8dd2b6 commit 95d0c5b

File tree

1 file changed

+1
-18
lines changed

1 file changed

+1
-18
lines changed

bazel/scip.BUILD.bazel

+1-18
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,10 @@ PLATFORM_FLAGS = select({
4040
"on_linux": [
4141
"-Wunknown-pragmas",
4242
"-fexceptions",
43-
"-DSYM=bliss"
4443
],
4544
"on_macos": [
4645
"-Wunknown-pragmas",
4746
"-fexceptions",
48-
"-DSYM=bliss"
4947
],
5048
"on_windows": [
5149
"/DSYM=none",
@@ -106,26 +104,11 @@ cc_library(
106104
]),
107105
copts = [
108106
"$(STACK_FRAME_UNLIMITED)", # src/scip/reader_cnf.c
109-
"-DSCIP_WITH_ZLIB",
110-
"-DWITH_SCIPDEF",
111-
"-DSCIP_ROUNDING_FE",
112107
"-DTPI_TNY", # src/tpi/type_tpi_tnycthrd.h
113-
# Compile in thead-safe mode (required since we use TPI_TNYC). Note,
114-
# one does not technically need to add this, as SCIP code always
115-
# uses syntax like "#ifndef NPARASCIP". But let's be explicit here.
116-
"-DPARASCIP",
117108
"-Isrc",
118109
"-Isrc/scip",
119110
] + PLATFORM_FLAGS,
120-
defines = [
121-
# Scip v800 optionally depends on scip/config.h and
122-
# scip/scip_export.h that are generated by build system.
123-
#
124-
# We need every library and binary that depends on SCIP libraries to
125-
# define this macro. That is why we use `defines' here instead of
126-
# `copts' or `local_defines'.
127-
"NO_CONFIG_HEADER",
128-
],
111+
defines = [],
129112
features = ["-parse_headers"],
130113
includes = [
131114
"src",

0 commit comments

Comments
 (0)