2

I am migrating an Oracle Database to Postgres and I wanted to install orafce which is a module that contains some useful function which can help with the porting.

I tried to execute the command "make install" but I got this error "collect2: fatal error: cannot find 'ld'"

gcc version : 4.8.5 binutils version : 2.25.1

I didn't find anything that corresponds to my situation anywhere.

Thank you

Massadi
  • 21
  • 1
  • 8

1 Answers1

2

Your installation of binutils is broken.

Reinstall it with

yum reinstall binutils

You should figure out who changed the permissions. Maybe they did more damage than that.

Laurenz Albe
  • 209,280
  • 17
  • 206
  • 263