8

Do any of the standard distributions come with an Objective C environment? Is there anywhere to get prebuilt Objective-C compiler and libraries? I would prefer an answer which is based on Clang/LLVM but will settle for something based on gcc.

fouric
  • 1,759
  • 4
  • 17
  • 26
Maria Zverina
  • 5,020
  • 5
  • 29
  • 41
  • 1
    The problem I see is that even after installing an Objective C environment, compiling the code is not going to be fun. It will be very slow. – Jivings Jun 20 '12 at 18:02

1 Answers1

6

Do any of the standard distributions come with Objective C environment?

As far as I'm aware neither Debian, Fedora, nor Arch Linux come with an Objective-C compiler, or any other related tools, by default. You will need to install them via their respective package managers.

Is there anywhere to get prebuilt Objective-C compiler and libraries?

Yes, you can download Objective-C compilers via your system's package manager. If you do not know how to install software for your system please read, "How do I install new software?".

Clang, the compiler, can be found in the Debian, Fedora, and Arch Linux package mangers under the name clang.

You may be able to install prebuilt libraries from your system's package manger. If not, you will need to compile them manually by hand. You can often find the more popular, open-source libraries on Github.