mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 01:05:48 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			613 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			613 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
set -e
 | 
						|
topdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
 | 
						|
if [ -z "$1" ]; then
 | 
						|
	echo "Usage: $0 <dest path>"
 | 
						|
	exit 1
 | 
						|
fi
 | 
						|
 | 
						|
# key points:
 | 
						|
# * Clang + LLD + libc++ instead of GCC + binutils + stdc++
 | 
						|
# * Mingw-w64 with UCRT enabled and winpthreads support
 | 
						|
# why are we avoiding GCC? -> Thread Local Storage (TLS) is totally broken
 | 
						|
name=llvm-mingw-20231128-ucrt-ubuntu-20.04-x86_64.tar.xz
 | 
						|
wget "https://github.com/mstorsjo/llvm-mingw/releases/download/20231128/$name" -O "$name"
 | 
						|
sha256sum -w -c <(grep -F "$name" "$topdir/sha256sums.txt")
 | 
						|
tar -xaf "$name" -C "$1" --strip-components=1
 | 
						|
rm -f "$name"
 |