From 62305e1b42a5f80309f5da714f5b89baafdef445 Mon Sep 17 00:00:00 2001 From: Pascal JACQ Date: Wed, 15 Oct 2014 11:04:22 +0200 Subject: [PATCH] Adding libraries bcm_host and EGL in setup.py to solve issues 2373 and 2364 on rpi running archlinux --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5ac1d9cea..b66c141fa 100644 --- a/setup.py +++ b/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']: