[Solved] Xcode project: Library not found for -lmp3lame [closed]


Besides the fact that you need to format your error correctly (at least put a code block around it or something), you may want to look into debugging error messages from LLDB (the debugger). A clang/linker error means that a certain file cannot be found when the project is compiling.

ld: library not found for -lmp3lame
clang: error: linker command failed with exit code 1 (use -v to see invocation)

^This is the error you should be paying attention to. It notes that the library is not found for -lmp3lame. This means at compile time, this library does not exist. It may not be included in the linked classes, it may not be included in the target your building out, you may not have directed the framework’s search paths/header paths correctly. With the little information provided above, it could be a variety of things with this being your best answer.

solved Xcode project: Library not found for -lmp3lame [closed]