2

I've been trying to remove attributes from files so I can compile bgfx for my phone but I'm having problems with the code sign failing because:

"resource fork, Finder information, or similar detritus not allowed."

Therefore, I've been attempting to remove all attributes from all files in the bgfx folder with zero success.

A short version of what is happening is this:

bash-3.2$ xattr -lr .
./makefile: com.apple.macl: 
bash-3.2$ xattr -c ./makefile
bash-3.2$ echo "$?"
0
bash-3.2$ xattr -lr .
./makefile: com.apple.macl: 
bash-3.2$ xattr -d com.apple.macl ./makefile
bash-3.2$ echo "$?"
0
bash-3.2$ xattr -lr .
./makefile: com.apple.macl:

I've also tried the same commands using zsh with zero success.

This was all done on macOS Sequoia 15.1 and attempted again on macOS 15.2.

Giacomo1968
  • 58,727

1 Answers1

1

The files were located under my iCloud Drive. Moving them from that folder fixed the issue.