DaveWoodCom / XCGLogger

A debug log framework for use in Swift projects. Allows you to log details to the console (and optionally a file), just like you would have with NSLog() or print(), but with additional information, such as the date, function name, filename and line number.
MIT License
3.93k stars 477 forks source link

Cannot compile framework with XCGLogger dependencies #328

Open sglushchenko opened 1 year ago

sglushchenko commented 1 year ago

Hello, I faced with a problem, when I try compile Swift Package framework to xcframework from the command line and when in xcframework contain dependencies XCGLogger. Firstly I had error that I cannot find a module ObjcExceptionBridging

I made fork and add this line. It helps @_implementationOnly import ObjcExceptionBridging

But I get many another errors. I change name of target at Package file and it starts to work. Looks like Swift Package Manager has requirements that product and target should have different names. So, my product still XCGLogger, but my target XCGLoggerImpl, and I change folder name too.

You can see my Package file here https://github.com/sglushchenko/XCGLogger/blob/master/Package.swift

Probably better change just product name and keep a target name.

P.S. It works well with Intel, but doesn't work with M1/M2

jerrypainter commented 3 months ago

Same error to me after update Xcode to 15.3. Cannot find a module ObjcExceptionBridging when archive a framework and set build libraries for distribution to YES.

Please help!

sglushchenko commented 1 month ago

I see updates in repository. You have and PrivacyInfo. But we still have same problem. Just 1 year