diff --git a/WORKSPACE b/WORKSPACE index 5721d7dd0..6c6ce5629 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -591,10 +591,10 @@ http_archive( patch_cmds = [ "tar -xzf c++/libs/libhdfspp/libhdfspp.tar.gz -C c++/libs/libhdfspp", ], - sha256 = "abdffe48b8d2e7776c3b541ee2241401e49774941ca4a8c759e5d795daec8a45", - strip_prefix = "orc-rel-release-1.6.7", + sha256 = "39d983f4c7feb8ea1e8ab8e3e53e9afc643282b7a500b3a93c91aa6490f65c17", + strip_prefix = "orc-rel-release-1.6.14", urls = [ - "https://github.com/apache/orc/archive/refs/tags/rel/release-1.6.7.tar.gz", + "https://github.com/apache/orc/archive/refs/tags/rel/release-1.6.14.tar.gz", ], ) diff --git a/third_party/liborc.BUILD b/third_party/liborc.BUILD index 9cc2e6a01..73ca1ffee 100644 --- a/third_party/liborc.BUILD +++ b/third_party/liborc.BUILD @@ -92,7 +92,7 @@ genrule( srcs = ["c++/include/orc/orc-config.hh.in"], outs = ["c++/include/orc/orc-config.hh"], cmd = ("sed " + - "-e 's/@ORC_VERSION@/1.6.7/g' " + + "-e 's/@ORC_VERSION@/1.6.14/g' " + "-e 's/cmakedefine/define/g' " + "$< >$@"), ) @@ -107,6 +107,7 @@ genrule( "-e 's/cmakedefine HAS_PREAD/undef HAS_PREAD/g' " + "-e 's/cmakedefine NEEDS_REDUNDANT_MOVE/undef NEEDS_REDUNDANT_MOVE/g' " + "-e 's/cmakedefine NEEDS_Z_PREFIX/undef NEEDS_Z_PREFIX/g' " + + "-e 's/cmakedefine HAS_BUILTIN_OVERFLOW_CHECK/undef HAS_BUILTIN_OVERFLOW_CHECK/g' " + "-e 's/cmakedefine/define/g' " + "$< >$@" ),