You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	use a wrapper script to call MS link.exe to avoid mixing with /usr/bin/link.exe
favor link over link.exe in case some wrapper script already exists fallback to "link" in the path if the one next to cl is not found Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
		
				
					committed by
					
						 Michael Niedermayer
						Michael Niedermayer
					
				
			
			
				
	
			
			
			
						parent
						
							daf6bce71b
						
					
				
				
					commit
					58ed7b6328
				
			
							
								
								
									
										9
									
								
								compat/windows/mslink
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										9
									
								
								compat/windows/mslink
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,9 @@ | ||||
| #!/bin/sh | ||||
|  | ||||
| LINK_EXE_PATH=$(dirname "$(command -v cl)")/link | ||||
| if [ -x "$LINK_EXE_PATH" ]; then | ||||
|     "$LINK_EXE_PATH" $@ | ||||
| else | ||||
|     link $@ | ||||
| fi | ||||
| exit $? | ||||
		Reference in New Issue
	
	Block a user