brintos

brintos / llvm-project-archived public Read only

0
0
Text · 274 B · 512bf07 Raw
12 lines · plain
1declare_args() {2  if (host_os == "win") {3    # On Windows, path to a directory containing zlib headers and zlib.lib.4    zlib_path = ""5  }6}7 8declare_args() {9  # Whether to include code that links against zlib.10  llvm_enable_zlib = host_os != "win" || zlib_path != ""11}12