aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ijar/BUILD
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2015-06-01 14:45:21 +0000
committerGravatar Philipp Wollermann <philwo@google.com>2015-06-01 15:50:49 +0000
commiteb6e90397eff1083f0574b6cbd94eb9f42d2d239 (patch)
tree7eac158033f6db031ea5ac167f75fd3ff800c4a1 /third_party/ijar/BUILD
parent14b437bf749baf0488cfc7e4ed7589dc4af9bec3 (diff)
Use the ijar ZIP implementation in Blaze instead of libarchive
This ZIP implementation is lightweight and rely on zlib for compression. libarchive was a bit tricky to set-up so it's better to use that one. -- Change-Id: I607b492998572e834e095a4606eeb77c0b574542 Reviewed-on: https://bazel-review.googlesource.com/#/c/1410/ MOS_MIGRATED_REVID=94910072
Diffstat (limited to 'third_party/ijar/BUILD')
-rw-r--r--third_party/ijar/BUILD4
1 files changed, 3 insertions, 1 deletions
diff --git a/third_party/ijar/BUILD b/third_party/ijar/BUILD
index 1ab0975c02..2224dd6c93 100644
--- a/third_party/ijar/BUILD
+++ b/third_party/ijar/BUILD
@@ -14,7 +14,9 @@ cc_library(
"common.h",
"zip.h",
],
- # TODO(bazel-team): we should replace the -lz flag.
+ # TODO(bazel-team): we should replace the -lz flag, it is non-hermetic.
+ # We should instead use a new_local_repository once the autoconf
+ # mechanism is ready.
linkopts = ["-lz"],
)