Intentando compilar a flote usando xcode en OSX 10.9.4: la recolección de basura ya no es compatible

Intentando compilar a flote usando xcode en OSX 10.9.4: la recolección de basura ya no es compatible

Estaba siguiendo las instrucciones dehaciendo una sola ventana pegajosa con a flote

Aquí están las instrucciones de la publicación:

 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/

Seguí las instrucciones al pie de la letra y no funcionó para mí.

Después de instalar xcode 6.0.1 en OS 10.9.4 y ejecutar xcodebuild -configuration Release install, recibí varios mensajes de error.

Este es el tipo de volcado que recibí después de cada archivo, junto con el resultado al final del proceso:

`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)

¿Descargué una versión que es incompatible con OSX 10.9.4 Maverick? ¿Qué está pasando aquí?

Respuesta1

Pruebe xcodebuildcon GCC_ENABLE_OBJC_GC=unsupportedpara habilitar la recolección de basura (ahora no compatible).

información relacionada