The x86_64 bison works fine out of the box. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3589>
		
			
				
	
	
		
			22 lines
		
	
	
		
			668 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			668 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
| project('win-flex-bison-binary', version : '3.7.6')
 | |
| 
 | |
| py3 = import('python3').find_python()
 | |
| 
 | |
| message('Downloading and extracting bison for macOS x64...')
 | |
| 
 | |
| arch = 'x86_64' # run under emulation on arm64
 | |
| tar_hash = '932f91d7c7fa0121abc3e5f8e54a7234b03d3de468c254ab8063ff8e6eb92a09'
 | |
| 
 | |
| ret = run_command(py3, files('download-binary.py'), meson.project_version(), arch, tar_hash,
 | |
|     check: true)
 | |
| 
 | |
| conf = configuration_data()
 | |
| conf.set('SRCDIR', meson.project_source_root())
 | |
| conf.set('EXTRACTDIR', ret.stdout())
 | |
| bison_py = configure_file(
 | |
|     input: 'bison.py.in',
 | |
|     output: 'bison.py',
 | |
|     configuration: conf)
 | |
| 
 | |
| meson.override_find_program('bison', find_program(bison_py))
 |