10 lines
		
	
	
		
			409 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			409 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| set -xe
 | |
| python -m virtualenv venv
 | |
| source venv/bin/activate
 | |
| pip install scons
 | |
| pip install -r external/scons-plus-plus/requirements.txt
 | |
| scons -j$(nproc) --build_type=debug --variant=linux_clang_debug --compiler=clang
 | |
| scons -j$(nproc) --build_type=release_debug --variant=linux_clang_release_debug --compiler=clang
 | |
| scons -j$(nproc) --build_type=release --variant=linux_clang_release --compiler=clang
 |