mirror of
				https://github.com/google/cpu_features.git
				synced 2025-11-03 22:40:17 +01:00 
			
		
		
		
	- Use stderr for issues
- Add usage to run_integration.sh (-h or --help)
- deduce toolchain and qemu config from TARGET
- Bump QEMU from 2.11.1 to 5.2.0
  - fix qemu build on Archlinux
- Bump Linaro:
    toolchain 7.2-2017.11 -> 7.5-2019.12
    sysroot 2.25-2017.11 -> 2.25-2019.12
- Bump codescape from 2017.10-08 to 2020.06-01
  - migrate from mips-r2-hard to mips-r6-hard
		
	
		
			
				
	
	
		
			80 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Toolchains for little-endian, 64-bit ARMv8 for GNU/Linux systems
 | 
						|
function set_aarch64-linux-gnu() {
 | 
						|
  export TARGET=aarch64-linux-gnu
 | 
						|
}
 | 
						|
 | 
						|
# Toolchains for little-endian, hard-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems
 | 
						|
function set_arm-linux-gnueabihf() {
 | 
						|
  export TARGET=arm-linux-gnueabihf
 | 
						|
}
 | 
						|
 | 
						|
# Toolchains for little-endian, 32-bit ARMv8 for GNU/Linux systems
 | 
						|
function set_armv8l-linux-gnueabihf() {
 | 
						|
  export TARGET=armv8l-linux-gnueabihf
 | 
						|
}
 | 
						|
 | 
						|
# Toolchains for little-endian, soft-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems
 | 
						|
function set_arm-linux-gnueabi() {
 | 
						|
  export TARGET=arm-linux-gnueabi
 | 
						|
}
 | 
						|
 | 
						|
# Toolchains for big-endian, 64-bit ARMv8 for GNU/Linux systems
 | 
						|
function set_aarch64_be-linux-gnu() {
 | 
						|
  export TARGET=aarch64_be-linux-gnu
 | 
						|
}
 | 
						|
 | 
						|
# Toolchains for big-endian, hard-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems
 | 
						|
function set_armeb-linux-gnueabihf() {
 | 
						|
  export TARGET=armeb-linux-gnueabihf
 | 
						|
}
 | 
						|
 | 
						|
# Toolchains for big-endian, soft-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems
 | 
						|
function set_armeb-linux-gnueabi() {
 | 
						|
  export TARGET=armeb-linux-gnueabi
 | 
						|
}
 | 
						|
 | 
						|
function set_mips32() {
 | 
						|
  export TARGET=mips32
 | 
						|
}
 | 
						|
 | 
						|
function set_mips32el() {
 | 
						|
  export TARGET=mips32el
 | 
						|
}
 | 
						|
 | 
						|
function set_mips64() {
 | 
						|
  export TARGET=mips64
 | 
						|
}
 | 
						|
 | 
						|
function set_mips64el() {
 | 
						|
  export TARGET=mips64el
 | 
						|
}
 | 
						|
 | 
						|
function set_x86_64() {
 | 
						|
  export TARGET=x86_64
 | 
						|
}
 | 
						|
 | 
						|
ENVIRONMENTS="
 | 
						|
  set_aarch64-linux-gnu
 | 
						|
  set_arm-linux-gnueabihf
 | 
						|
  set_armv8l-linux-gnueabihf
 | 
						|
  set_arm-linux-gnueabi
 | 
						|
  set_aarch64_be-linux-gnu
 | 
						|
  set_armeb-linux-gnueabihf
 | 
						|
  set_armeb-linux-gnueabi
 | 
						|
  set_mips32
 | 
						|
  set_mips32el
 | 
						|
  set_mips64
 | 
						|
  set_mips64el
 | 
						|
  set_x86_64
 | 
						|
"
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
for SET_ENVIRONMENT in ${ENVIRONMENTS}; do
 | 
						|
  echo "testing ${SET_ENVIRONMENT}"
 | 
						|
  ${SET_ENVIRONMENT}
 | 
						|
  ./"$(dirname -- "$0")"/run_integration.sh
 | 
						|
done
 |