Post

Replies

Boosts

Views

Activity

Reply to Code Signing or Xcode adding mysterious entitlements that not exist in project
So finally I found a way to fix the wrong behavior of the Xcode build and archive process ... The following script snippet patching the wrong files to the right one. # Type a script or drag a script file from your workspace to insert its path. # NOTE!!! -> Paste the script into Xcode Build Phase - custom build script # Input files: # ---> ${SOURCE_ROOT}/../../Entitlements.plist # ---> ${SOURCE_ROOT}/../../DRFXBuilder.app.xcent # Output files: # LEAVE EMPTY echo "-------- PATCH WRONG ENTITLEMENTS ---------" echo "-- build env" printenv ##-- mkdir -p ${BUILD_ROOT}/DRFXBuilder.build/Debug/DRFXBuilder.build/DerivedSources cp -pv ${SOURCE_ROOT}/../../Entitlements.plist ${BUILD_ROOT}/DRFXBuilder.build/Debug/DRFXBuilder.build/DerivedSources/Entitlements.plist cp -pv ${SOURCE_ROOT}/../../DRFXBuilder.app.xcent ${BUILD_ROOT}/DRFXBuilder.build/Debug/DRFXBuilder.build/DRFXBuilder.app.xcent ##-- mkdir -p ${BUILD_ROOT}/DRFXBuilder.build/Release/DRFXBuilder.build/DerivedSources cp -pv ${SOURCE_ROOT}/../../Entitlements.plist ${BUILD_ROOT}/DRFXBuilder.build/Release/DRFXBuilder.build/DerivedSources/Entitlements.plist cp -pv ${SOURCE_ROOT}/../../DRFXBuilder.app.xcent ${BUILD_ROOT}/DRFXBuilder.build/Release/DRFXBuilder.build/DRFXBuilder.app.xcent ##-- mkdir -p ${TARGET_TEMP_DIR}/DerivedSources cp -pv ${SOURCE_ROOT}/../../Entitlements.plist ${TARGET_TEMP_DIR}/DerivedSources/Entitlements.plist cp -pv ${SOURCE_ROOT}/../../DRFXBuilder.app.xcent ${TARGET_TEMP_DIR}/DRFXBuilder.app.xcent
Topic: Code Signing SubTopic: Entitlements Tags:
Jul ’25
Reply to DriverKit IOUserSerial Driver
Hello DTS Engineers, Kevin, Quinn, Elliot.... Is this thread watched. If so, let me know. I have very important question about my implementation of the IOUserSerial of the DriverSerialKit. Repository: Virtual Serial Port Driver... I'm having trouble with indexing when calling TxDataAvailable and the SerialPortInterface. I've been trying to figure out the kernel's behavior for several days now. The problem is that when I try to transfer larger files, the producer and consumer indexes in the SerialPortInterface get messed up. TxDataAvailable Log sendResponse Log Best regards Bjoern
Topic: App & System Services SubTopic: Core OS Tags:
Nov ’25