We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1cad22 commit e610a0eCopy full SHA for e610a0e
llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn
@@ -111,8 +111,17 @@ write_cmake_config("lit_common_configured") {
111
}
112
113
if (llvm_enable_zlib) {
114
- values += [ "ZLIB_FOUND_PYBOOL=1" ]
+ # FIXME: Include dir and library are wrong on Windows; look at zlib_path.
115
+ values += [
116
+ "ZLIB_FOUND_PYBOOL=1",
117
+ "ZLIB_INCLUDE_DIR=-I=",
118
+ "ZLIB_LIBRARY=-lz",
119
+ ]
120
} else {
- values += [ "ZLIB_FOUND_PYBOOL=0" ]
121
122
+ "ZLIB_FOUND_PYBOOL=0",
123
+ "ZLIB_INCLUDE_DIR=",
124
+ "ZLIB_LIBRARY=",
125
126
127
0 commit comments