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.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cannot compile framework with XCGLogger dependencies

sglushchenko opened this issue · comments

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