1. 程式人生 > >[iOS]Xcode編譯時builtin-copy失敗

[iOS]Xcode編譯時builtin-copy失敗

Xcode編譯時builtin-copy失敗

原因是有檔案存在extended attributes,應該是Xcode命令列的一個bug。

解決方法:去除擴充套件屬性@

1. 為什麼會有這個@ ?

Headers andyliu$ ls -l
total 32
[email protected] 1 andyliu  staff  114 Oct 11 19:23 NodeMobile.h
-rw-r--r--  1 andyliu  staff  114 Oct 11 19:22 NodeMobile.x
-rw-r--r--  1 andyliu  staff  114 Oct 11 19:23 NodeMobile.x2
[email protected]
1 andyliu staff 114 Oct 11 19:16 NodeMobile.xx

列印某個檔案的擴充套件屬性:

xattr App.docx

com.apple.FinderInfo
com.apple.lastuseddate#PS
com.apple.metadata:kMDLabel_7tid2fntzxfoopva5vyhyi2omq
com.apple.quarantine

2. 如何去除?(去除導致增加擴充套件屬性的條件)

  • 從spotlight移除

    CMD+空格調出Spotlight自己,輸入spotlight開啟其配置頁面,切換到Privacy頁面,加入需要禁止的目錄。

  • 調出Activity Monitor,找到Finder程序,殺死它。

參考 (不一定有效的方法)