2

While trying to install this software:http://graphics.berkeley.edu/resources/ARCSim/ I'm running through the following error when running the makefile in the /dependencies folder.

ld: library not found for -lcrypto

I'm on MacOS BigSur.

Thanks in advance for the help !

Tommy Tran
  • 29
  • 2
  • Does this article answer your question? https://stackoverflow.com/questions/23539147/xcode-ld-library-not-found-for-lpods – Attis Jun 07 '21 at 10:03
  • libcrypto is supplied by OpenSSL. Do you have OpenSSL headers and libraries installed and the paths set up in the ARCSim build? It should hopefully have found it itself if it's based on GNU autoconf or cmake. – Rup Jun 07 '21 at 10:04
  • 1
    Hey I installed directly from source without using homebrew and it fixed the problem – Tommy Tran Jun 07 '21 at 15:09

1 Answers1

2

You’ll need to carefully read the installation instructions and install all dependencies — in particular, for your error message, OpenSSL, e.g. via Homebrew.

Konrad Rudolph
  • 530,221
  • 131
  • 937
  • 1,214