mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 10:18:41 +02:00 
			
		
		
		
	This allows to use the same toolchain docker images as other toolchains, based on Debian buster. While here, use the default max-run-time, which is more than enough for this toolchain. Differential Revision: https://phabricator.services.mozilla.com/D119137
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			297 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			297 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
set -x -e -v
 | 
						|
 | 
						|
# This script is for building binutils for Linux.
 | 
						|
 | 
						|
cd $GECKO_PATH
 | 
						|
 | 
						|
PATH=$MOZ_FETCHES_DIR/gcc/bin:$PATH
 | 
						|
 | 
						|
build/unix/build-binutils/build-binutils.sh $MOZ_FETCHES_DIR
 | 
						|
 | 
						|
# Put a tarball in the artifacts dir
 | 
						|
mkdir -p $UPLOAD_DIR
 | 
						|
cp $MOZ_FETCHES_DIR/binutils.tar.* $UPLOAD_DIR
 |