Saturday, April 27, 2024
 Popular · Latest · Hot · Upcoming
8
rated 0 times [  8] [ 0]  / answers: 1 / hits: 10349  / 2 Years ago, sat, july 2, 2022, 9:52:20

I'm running a ./configure script to install a program on a newly installed 13.10 ubuntu.



I'm told that libiberty should come with binutils or gcc, but it is not being found.



There is no information on http://gcc.gnu.org/onlinedocs/libiberty/ that I am able to make use of.



I don't know how to install packages without using apt. I can add a repo to the sources though.


More From » 13.10

 Answers
3

If configure is just looking for the libiberty development files and static library then install binutils-dev and gcc-dev:



sudo apt-get install binutils-dev gcc-dev


Note: to install the libiberty headers on a 13.10 system, the only way is to download the deb file (amd64 or i386) and call dpkg -i.



First choose the right package to install:
libiberty-dev_20131116-1_amd64.deb or libiberty-dev_20131116-1_i386.deb





Select a mirror to download the .deb file



In a terminal go to the folder where you saved the deb file and type (for amd64):



sudo dpkg -i ./libiberty-dev_20131116-1_amd64.deb


Thanks to steeldriver for his comment about binutils-dev


[#26014] Sunday, July 3, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
oraoming

Total Points: 354
Total Questions: 105
Total Answers: 124

Location: Iraq
Member since Sat, Apr 3, 2021
3 Years ago
;