Why do you need this?

Issue #1 resolved
Former user created an issue

WHY WHY WHY?

Comments (3)

  1. Former user Account Deleted

    Hi, first thanks to this project. In my mac, I found output such as below >>> ld: warning: option -s is obsolete and being ignored ld: library not found for -lcrt0.o collect2: error: ld returned 1 exit status

    therefor, I delete the compile options about "-s -static", that works well.

  2. Taegyoon Kim repo owner

    From ld: library not found for -lcrt1.10.5.o


    Solved (or at least it is working). I found a possible solution provided by a user named Nasser Abassi.

    I located the folder for the library I was missing:

    $ locate crt1.10.5.o

    I added this folder to the variable LIBRARY_PATH, by writing the following into ~/.bash_profile

    export LIBRARY_PATH=/here_folder_where_my_library_is/:${LIBRARY_PATH}

    Re-read bash_profile:

    $ source ~/.bash_profile

    For the moment, this "solved" the problem.

    I hope it helps!

  3. Log in to comment