mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
This PR includes various documentation improvements: - Fix grammar in README.md introduction - Update Node.js version references to consistently indicate 'Node.js 20 or higher' - Enhance macOS installation and setup guide with detailed instructions - Fix broken link in API.md - Fix formatting inconsistencies in WhatIsCompilerExplorer.md 🤖 Generated with [Claude Code](https://claude.ai/code) --------- Co-authored-by: Claude <noreply@anthropic.com>
23 lines
813 B
Markdown
23 lines
813 B
Markdown
# Running on MacOS
|
|
|
|
## Prerequisites
|
|
|
|
1. **Node.js**: Ensure you have Node.js 20 or higher installed
|
|
- Installation options include Homebrew or the official installer from [nodejs.org](https://nodejs.org/)
|
|
|
|
2. **Xcode Command Line Tools**:
|
|
- Required for compilers and build tools
|
|
- Can be installed via `xcode-select --install`
|
|
- Be sure to accept the Xcode EULA
|
|
|
|
## Required Configuration Changes
|
|
|
|
* Change in `etc/config/compiler-explorer.defaults.properties` the line `objdumperType=default` to `objdumperType=llvm`
|
|
* This ensures compatibility with macOS's LLVM-based toolchain
|
|
|
|
## Notes
|
|
|
|
* By default, Apple Clang will be available as a compiler
|
|
* For configuration details, see [Configuration.md](Configuration.md)
|
|
* Follow the standard setup instructions in the main [README.md](../README.md)
|