Revert "IMPALA-1619: Support 64-bit allocations."

This reverts commit 1ffb2bd5a2a2faaa759ebdbaf49bf00aa8f86b5e.

Unbreak the packaging builds for now.

Change-Id: Id079acb83d35b51ba4dfe1c8042e1c5ec891d807
Reviewed-on: http://gerrit.cloudera.org:8080/3543
Reviewed-by: Dan Hecht <dhecht@cloudera.com>
Tested-by: Michael Ho <kwho@cloudera.com>
This commit is contained in:
Michael Ho
2016-06-30 12:27:38 -07:00
committed by Tim Armstrong
parent d19751669a
commit a07fc367ee
29 changed files with 338 additions and 363 deletions

View File

@@ -123,16 +123,8 @@ def detect_python_cmd():
def install_deps():
toolchain_dir = os.environ.get("IMPALA_TOOLCHAIN", "")
snappy_version = os.environ.get("IMPALA_SNAPPY_VERSION", "")
snappy_dir = toolchain_dir + "/snappy-" + snappy_version
lib_path = snappy_dir + "/lib:" + os.environ.get("LD_LIBRARY_PATH", "")
include_dir = snappy_dir + "/include"
args = ["--global-option", "build_ext", "--global-option", "-L"+ lib_path,
"--global-option", "-I" + include_dir, "-r", REQS_PATH]
LOG.info("Installing packages into the virtualenv")
exec_pip_install(args)
exec_pip_install(["-r", REQS_PATH])
shutil.copyfile(REQS_PATH, INSTALLED_REQS_PATH)