You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			385 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			385 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -eo pipefail
 | 
						|
 | 
						|
SCRIPT_LOCATION=$(dirname "$0")
 | 
						|
source "$SCRIPT_LOCATION"/utils.sh
 | 
						|
 | 
						|
VERSION="$1"
 | 
						|
 | 
						|
if [[ $# -ne 1 ]]; then
 | 
						|
  echo "Please pass clang-version as a first parameter"
 | 
						|
  exit 1
 | 
						|
fi
 | 
						|
 | 
						|
change_ubuntu_mirror us
 | 
						|
 | 
						|
message "Installing libc++-${VERSION}"
 | 
						|
 | 
						|
retry_eval 5 apt-get clean && apt-get update && apt-get install -y libc++-${VERSION}-dev libc++abi-${VERSION}-dev
 |