mirror of
				https://github.com/google/cpu_features.git
				synced 2025-11-04 06:40:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
###############################################################################
 | 
						|
# Common flags that apply to all configurations.
 | 
						|
# Use sparingly for things common to all compilers and platforms.
 | 
						|
###############################################################################
 | 
						|
 | 
						|
# Enable Bzlmod for every Bazel command
 | 
						|
common --enable_bzlmod
 | 
						|
 | 
						|
# Prevent invalid caching if input files are modified during a build.
 | 
						|
build --experimental_guard_against_concurrent_changes
 | 
						|
 | 
						|
###############################################################################
 | 
						|
# Options for continuous integration.
 | 
						|
###############################################################################
 | 
						|
 | 
						|
# Speedup bazel using a ramdisk.
 | 
						|
build:ci --sandbox_base=/dev/shm
 | 
						|
 | 
						|
# Show as many errors as possible.
 | 
						|
build:ci --keep_going
 | 
						|
 | 
						|
# Show subcommands when building
 | 
						|
build:ci --subcommands=true
 | 
						|
 | 
						|
# Make sure we test for C99 compliance when building the library
 | 
						|
build:ci --conlyopt=-std=c99
 | 
						|
 | 
						|
# Show test errors.
 | 
						|
test:ci --test_output=errors
 | 
						|
 | 
						|
###############################################################################
 | 
						|
 | 
						|
# The user.bazelrc file is not checked in but available for local mods.
 | 
						|
# Always keep this at the end of the file so that user flags override.
 | 
						|
try-import %workspace%/user.bazelrc
 |