Guest User

Untitled

a guest
Dec 13th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. g++ -o /executable/path test.o -L../path/to/lib -lfoo
  2.  
  3. /usr/bin/ld: can not find -lfoo
  4. collect2: error: ld returned 1 exit status
  5.  
  6. g++ -o /executable/path test.o -L../path/to/lib/libfoo.so
  7.  
  8. undefined reference to 'functions and class members in libfoo.so'
Add Comment
Please, Sign In to add comment