Home > Enterprise >  Run C on MacOS without xcode
Run C on MacOS without xcode

Time:03-06

I don't have Xcode installed on my Mac OS 13.6 but I would like to run c on vs code. Is there a way to do that without the need for Xcode to be installed? Also, can I run an older version of Xcode and run c without problems?

Note: Would be great if someone posted a link for a tutorial.

CodePudding user response:

You may download and install LLVM 13.0.1 for Darwin or a small part of Xcode, Xcode command line tools: xcode-select --install.

Both will result in installing clang .

  • Related