mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 01:50:50 +08:00 
			
		
		
		
	 c21258b70e
			
		
	
	c21258b70e
	
	
	
		
			
			We’re now able to build a static podman binary based on a custom nix derivation. This is integrated in cirrus as well, whereas a later target would be to provide a self-contained static binary bundle which can be installed on any Linux x64-bit system. Fixes: https://github.com/containers/libpod/issues/1399 Signed-off-by: Sascha Grunert <sgrunert@suse.com>
		
			
				
	
	
		
			9 lines
		
	
	
		
			149 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			149 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build static
 | |
| 
 | |
| package linkmode
 | |
| 
 | |
| // Linkmode returns the linking mode (static/dynamic) for the build.
 | |
| func Linkmode() string {
 | |
| 	return "static"
 | |
| }
 |