mirror of https://github.com/kivy/kivy.git
Adding libraries bcm_host and EGL in setup.py to solve issues 2373 and 2364 on rpi running archlinux
This commit is contained in:
parent
cc0590622a
commit
62305e1b42
2
setup.py
2
setup.py
|
@ -332,7 +332,7 @@ def determine_gl_flags():
|
|||
'/opt/vc/include/interface/vcos/pthreads',
|
||||
'/opt/vc/include/interface/vmcs_host/linux']
|
||||
flags['extra_link_args'] = ['-L', '/opt/vc/lib']
|
||||
flags['libraries'] = ['GLESv2']
|
||||
flags['libraries'] = ['bcm_host', 'EGL', 'GLESv2']
|
||||
else:
|
||||
flags['libraries'] = ['GL']
|
||||
if c_options['use_glew']:
|
||||
|
|
Loading…
Reference in New Issue