mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[build] Create armv7l and aarch64 releases (#5449)
Closes #5436 Authored by: MrOctopus, pukkandan
This commit is contained in:
		| @@ -12,9 +12,8 @@ from PyInstaller.__main__ import run as run_pyinstaller | ||||
| 
 | ||||
| from devscripts.utils import read_version | ||||
| 
 | ||||
| OS_NAME, MACHINE, ARCH = sys.platform, platform.machine(), platform.architecture()[0][:2] | ||||
| if MACHINE in ('x86_64', 'AMD64') or ('i' in MACHINE and '86' in MACHINE): | ||||
|     # NB: Windows x86 has MACHINE = AMD64 irrespective of bitness | ||||
| OS_NAME, MACHINE, ARCH = sys.platform, platform.machine().lower(), platform.architecture()[0][:2] | ||||
| if MACHINE in ('x86', 'x86_64', 'amd64', 'i386', 'i686'): | ||||
|     MACHINE = 'x86' if ARCH == '32' else '' | ||||
| 
 | ||||
| 
 | ||||
| @@ -63,7 +62,7 @@ def exe(onedir): | ||||
|     name = '_'.join(filter(None, ( | ||||
|         'yt-dlp', | ||||
|         {'win32': '', 'darwin': 'macos'}.get(OS_NAME, OS_NAME), | ||||
|         MACHINE | ||||
|         MACHINE, | ||||
|     ))) | ||||
|     return name, ''.join(filter(None, ( | ||||
|         'dist/', | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 MrOctopus
					MrOctopus