0

Error message:

Clang error: linker command failed with exit code 1 (use -v to see invocation)

Searched lot and..

I have done:

  • Checked "Compile Sources" section in "Build Phases" for any duplicate .m files there.

  • Checked my resources for any duplicate files.

  • Removed the derived data ~/Library/Developer/Xcode/DerivedData

    But no use...!!!

If iam attaching the error log completely,is there any way to identify from it, please check it, struggling to find out the issue. Thanks.

enter image description here

Mumthezir VP
  • 6,251
  • 6
  • 28
  • 57

1 Answers1

1

Look carefully at the "directory not found" errors!

Among other things you have directory names with an embedded space: "Reach Me" and "Third Party" that is incorrectly quoted in the Library search paths. In general embedded spaces in file and directory names can cause quoting problems are are best avoided.

It seems there is a library path: "/Users/alisons/Downloads/Reach Me/Reach Me/Classes/Third Party"

Rename the library and put in a directory in the project file hierarchy, just leaving it in the Downloads directory is just going to cause problems.

zaph
  • 111,848
  • 21
  • 189
  • 228