mirror of
				https://github.com/go-delve/delve.git
				synced 2025-10-31 10:47:27 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			456 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			456 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // This file is used to detect build on unsupported GOOS/GOARCH combinations.
 | |
| 
 | |
| //go:build (!linux && !darwin && !windows && !freebsd) || (linux && !amd64 && !arm64 && !386) || (darwin && !amd64 && !arm64) || (windows && !amd64) || (freebsd && !amd64)
 | |
| // +build !linux,!darwin,!windows,!freebsd linux,!amd64,!arm64,!386 darwin,!amd64,!arm64 windows,!amd64 freebsd,!amd64
 | |
| 
 | |
| package your_operating_system_and_architecture_combination_is_not_supported_by_delve
 | 
