Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...