mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 20:42:49 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			149 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			149 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| LINK_EXE_PATH=$(dirname "$(command -v cl)")/link
 | |
| if [ -x "$LINK_EXE_PATH" ]; then
 | |
|     "$LINK_EXE_PATH" $@
 | |
| else
 | |
|     link.exe $@
 | |
| fi
 | |
| exit $?
 | 
