Joe McDonnell created IMPALA-13353:
--------------------------------------
Summary: Patch bzip2 to respect the passed in CC
Key: IMPALA-13353
URL: https://issues.apache.org/jira/browse/IMPALA-13353
Project: IMPALA
Issue Type: Task
Components: Infrastructure
Affects Versions: Impala 4.5.0
Reporter: Joe McDonnell
Bzip2 hard codes CC to gcc in its Makefile:
{noformat}
CC=gcc{noformat}
This prevents it from working with clang. One way to fix it is to change this
to:
{noformat}
CC ?= gcc{noformat}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)