Error under lazarus/ubuntu: /usr/bin/ld: cannot find -lgds

Forum related to Firebird

Moderators: gto, cipto_kh, EgonHugeist

Post Reply
markba
Fresh Boarder
Fresh Boarder
Posts: 2
Joined: 14.09.2007, 21:32

Error under lazarus/ubuntu: /usr/bin/ld: cannot find -lgds

Post by markba »

I'm trying to install zeosdbo into lazarus under Ubuntu.

Compiling and installing the following packages:
- zcore: compile
- zparsesql: compile
- zplain: compile
- zdbc: compile
- zcomponent: install -> error: " /usr/bin/ld: cannot find -lgds"

Under Windows, the same procedure gives no errors, components are installed normally.

Note: the same error happens when trying to install another Interbase-package: /usr/share/lazarus/components/interbase/interbaselaz.lpk
Again: no error under Windows.

I have installed libfbclient1.

Lazarus 0.9.22 beta
Zeosdbo 6.6.1 beta
Ubuntu 7.04
libfbclient1 1.5.3.4870-12ubuntu2
barko
Senior Boarder
Senior Boarder
Posts: 51
Joined: 07.09.2005, 13:13

Post by barko »

You need to install some deb packages, I think:

for gtk2:

Code: Select all

sudo apt-get install build-essential libgtk2.0-dev libgdk-pixbuf-dev
for gtk1:

Code: Select all

sudo apt-get install libglib1.2 libgtk1.2 libgtk1.2-common libgdk-pixbuf2
and try to recompile lazarus... works for me
markba
Fresh Boarder
Fresh Boarder
Posts: 2
Joined: 14.09.2007, 21:32

Post by markba »

barko wrote:You need to install some deb packages, I think:

for gtk2:

Code: Select all

sudo apt-get install build-essential libgtk2.0-dev libgdk-pixbuf-dev
Thanks, this works for me.
Post Reply