Xcode - ld: library not found for -lPods

后端 未结 22 1475
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-28 18:27

I get these errors when I try to build an iOS application.

ld: library not found for -lPods
clang: error: linker command failed with exit code 1 (use -v to s         


        
22条回答
  •  北海茫月
    2020-11-28 19:04

    The below solution worked for me for the core-plot 2.3 version. Do the below changes under other linker flags section.

    1.Add $(inherited) and drag this item to top position 2.Remove "Pods-" prefix from -l"Pods-fmemopen”, l"Pods-NSAttributedStringMarkdownParser” and -l"Pods-MagicalRecord”.

    if still issue persists, Finally see if PODS_ROOT is set or not. You can check it under user defined section.

提交回复
热议问题