p-x9

Results 42 comments of p-x9

type this commands below and don't sign Xcode.app ``` sudo defaults write /Library/Preferences/com.apple.security.libraryvalidation.plist DisableLibraryValidation -bool true ``` skip Xcode sign like this ``` curl -fsSL https://raw.githubusercontent.com/wakatime/xcode-wakatime/master/install.sh | sh -s nosign...

@alanhamlett yes, It' s logged correctly. But be careful not to sign the Xcode.app yourself, or it will not work properly.

When running the BuildToolPlugin from the command line, I can avoid errors by adding the "--disable-sandbox" option. (When building an SPM target that depends on a plugin,) Is there a...

It works fine in my hands, but there have been other reports of it not working besides yours, and the cause is not yet known. If you can build it...

Hello! Thanks for trying to use it. Several others have reported this problem, but I have not been able to reproduce it in my environment and have not figured out...

Regardless of Macro, it should not be possible to capture `self` before `Self` is initialized. How about modifying it to assign after initialization as follows? ```swift import UIKit extension UIView...

`get_return_address` is actually a C macro that uses the `__builtin_return_address` function to obtain the return address of the function that called it. https://github.com/p-x9/AssociatedObject/blob/18f87a7cb2b13145daf2a46f4cbacd59b63fc976/Sources/AssociatedObjectC/include/associated_object_key.h#L16 The AssociatedObject macro creates the following function...

Fixed Key generation method. https://github.com/p-x9/AssociatedObject/releases/tag/0.10.3

`protocol` can only be defined in the global scope. However, PeerMacro cannot be used in the global scope with arbitrary specified in names. https://github.com/apple/swift-evolution/blob/main/proposals/0389-attached-macros.md#restrictions-on-arbitrary-names

Nested Protocol https://github.com/apple/swift-evolution/blob/main/proposals/0404-nested-protocols.md