Tentando compilar à tona usando o xcode no OSX 10.9.4 - a coleta de lixo não é mais suportada

0

Eu estava seguindo as instruções em fazendo uma única janela pegajosa com flutuando

Aqui estão as instruções do post:

 Download the SIMBL zip file
 Unzip the file
 Double-click/install SIMBL-0.9.9.pkg
 Create SIMBL bundle dir: mkdir ~/Library/Application\ Support/SIMBL/Plugins/
 Reboot
 Install from the git repo:

$ git clone https://github.com/millenomi/afloat.git
$ cd afloat
$ xcodebuild -configuration Release install
  # verbose output trimmed, except for last line:
  ** INSTALL SUCCEEDED **
$ mv /tmp/Afloat.dst/Users/'whoami'/Library/Bundles/Afloat.bundle/ ~/Library/Application\ Support/SIMBL/Plugins/

Eu segui as instruções para o t e não funcionou para mim.

Depois de instalar o xcode 6.0.1 no OS 10.9.4 e executar xcodebuild -configuration Instalação de versão recebi um monte de mensagens de erro.

Este é o tipo de despejo que recebi depois de cada arquivo, junto com a saída no final do processo:

'error: garbage collection is no longer supported

** INSTALL FAILED **


The following build commands failed:
    CompileC build/Afloat.build/Release/Afloat.build/Objects-normal/x86_64/Afloat.o Afloat.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    CompileC build/Afloat.build/Release/Afloat.build/Objects-normal/x86_64/AfloatStorage.o AfloatStorage.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    CompileC build/Afloat.build/Release/Afloat.build/Objects-normal/x86_64/AfloatPanel.o AfloatPanel.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    CompileC build/Afloat.build/Release/Afloat.build/Objects-normal/x86_64/AfloatPanelController.o AfloatPanelController.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(4 failures)

Eu baixei uma versão incompatível com o OSX 10.9.4 Maverick? O que está errado aqui?

    
por Andrew 31.05.2015 / 17:08

1 resposta

-1

Teste xcodebuild com GCC_ENABLE_OBJC_GC=unsupported para ativar a coleta de lixo (agora sem suporte).

    
por 23.08.2015 / 12:01