From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ea0-f181.google.com (mail-ea0-f181.google.com [209.85.215.181]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 4E66EE005B3 for ; Thu, 20 Jun 2013 07:31:17 -0700 (PDT) Received: by mail-ea0-f181.google.com with SMTP id a15so4052279eae.12 for ; Thu, 20 Jun 2013 07:31:16 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:subject:date:message-id:organization:user-agent :mime-version:content-transfer-encoding:content-type :x-gm-message-state; bh=Cm9b00UArprItiOzqIyPqWa3c9NqZQZv+8XZAXWMhJs=; b=UUgRAqNw3vVQYICYZyUUuSrRo0DZ/arD+OLFlYrpEHZ4PQ85fvCVXpuvGA+VDpA4TA tRoZCOK0p9wW3gREs/g0TuUNn8o1t3OJfHEnsJgWIc3pxWVAm99i/wvuu5/GOFNj+TvW 0xhPUMif6tilGzgsq6LFDj9cCEsjGOmdnDsLSA8iouUUab4qXwvzdD8UesdoTUBfC5NW 6phRFHR/jYeLClu/FvAOiard8PBTqXJVi34ttuu7ljcbwpAcJMzUMJNECDTve/XuoSN0 HUq3HFHB1dsxFxIWQIYAYfA6ZYLMNGWZugfUgFVWj/0K7x49vRXoGvwdCoXwI0DkL16z AT2A== X-Received: by 10.14.203.194 with SMTP id f42mr8032165eeo.53.1371738676675; Thu, 20 Jun 2013 07:31:16 -0700 (PDT) Received: from rudolf.localnet (ppp-82-135-84-132.dynamic.mnet-online.de. [82.135.84.132]) by mx.google.com with ESMTPSA id o5sm871270eef.5.2013.06.20.07.31.15 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 20 Jun 2013 07:31:15 -0700 (PDT) From: Thomas Senyk To: meta-freescale@yoctoproject.org Date: Thu, 20 Jun 2013 16:31:04 +0200 Message-ID: <2169791.BFDmuhoxsk@rudolf> Organization: Pelagicore AG User-Agent: KMail/4.10.4 (Linux/3.9.6-1-ARCH; KDE/4.10.4; x86_64; ; ) MIME-Version: 1.0 X-Gm-Message-State: ALoCoQkfcHcXK2h6oW9cwJYTVxqrwKKnHJ9UwRa199ue+LT1a9bsxwMwczTDvJK7XowK6F19mgtu Subject: [meta-fsl-arm][PATCH] Adding -lEGL and -lGAL to glesv2.pc X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2013 14:31:18 -0000 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" From: Thomas Senyk libGLESv2 has undefined symbols, which get provided by libEGL and libGAL, but libGLESv2 has no implicit 'link' to those libs. So if you link against libGLESv2 but not against libEGL and libGAL, you'll get 'undefined symbol'-errors. Signed-off-by: Thomas Senyk --- recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q/glesv2.pc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q/glesv2.pc b/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q/glesv2.pc index e92620b..9be46f2 100644 --- a/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q/glesv2.pc +++ b/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q/glesv2.pc @@ -7,6 +7,6 @@ Name: glesv2 Description: Vivante OpenGL ES 2.0 library Requires.private: Version: 8.0 -Libs: -L${libdir} -lGLESv2 +Libs: -L${libdir} -lGLESv2 -lEGL -lGAL Libs.private: -lpthread -lrt Cflags: -I${includedir} -- 1.8.3.1