mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 06:40:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			260 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			260 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Example user setup script. Copy as user-setup.sh and modify as required.
 | 
						|
 | 
						|
# gcc-13 is not the default gcc version
 | 
						|
export CC=/usr/bin/gcc-13
 | 
						|
export CXX=/usr/bin/c++-13
 | 
						|
 | 
						|
# Override conan profile to be gcc-13
 | 
						|
export conan_profile=scwx-linux_gcc-13
 |