mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
Fix compiler interpolation
This commit is contained in:
parent
fa2a9bb9aa
commit
9ad31e983c
@ -168,8 +168,8 @@ def parse_env_variables(
|
||||
|
||||
result.append(f"CC={cc}")
|
||||
result.append(f"CXX={cxx}")
|
||||
cmake_flags.append(f"-DCMAKE_C_COMPILER=`which {cc}`")
|
||||
cmake_flags.append(f"-DCMAKE_CXX_COMPILER=`which {cxx}`")
|
||||
cmake_flags.append(f"-DCMAKE_C_COMPILER={cc}")
|
||||
cmake_flags.append(f"-DCMAKE_CXX_COMPILER={cxx}")
|
||||
|
||||
# Create combined output archive for split build and for performance tests.
|
||||
if package_type == "performance":
|
||||
|
Loading…
Reference in New Issue
Block a user