Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.1k views
in Technique[技术] by (71.8m points)

ios - Undefined symbols for architecture arm64, Xcode 12.3

I have errors when trying to run tests. I read that the error may be related to unrelated files, but I did not find this problem in my project.

Has anyone encountered a similar problem and how did you solve it?

Undefined symbols for architecture arm64:
  "protocol descriptor for InTravel.URLRequestFactory", referenced from:
      l_got.$s8InTravel17URLRequestFactoryMp in Tests_RequestFactory.o
  "(extension in InTravel):InTravel.EndPointType.url.getter : Foundation.URL", referenced from:
      Tests_iOS.MockRequestFactory.createRequest(InTravel.EndPointType) throws -> Foundation.URLRequest in Tests_RequestFactory.o
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Has anyone encountered a similar problem and how did you solve it?

Check the target membership for your various files. Make sure that the file in which those symbols are defined is included in the target you're trying to build.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...