Latest Version: Loading...

Checking for latest release...

Windows

Requirements:
Windows 10/11 (64-bit)

macOS

Requirements:
macOS 12.0+ (Monterey)
Not sure which one? Check "About This Mac" in the Apple menu. If you see "Apple" followed by a processor name (like M1, M2, etc.), choose Apple Silicon. Otherwise, choose Intel.

Linux

Requirements:
Ubuntu 20.04+ / Fedora 35+

VS Code Extension

Get syntax highlighting, IntelliSense, and debugging support for GPULang in Visual Studio Code.

GPULang Language Support

Complete language support including syntax highlighting, auto-completion, error diagnostics, and integrated compilation.

  • Syntax highlighting for .gpul files
  • IntelliSense and auto-completion
  • Real-time error checking
  • Integrated compiler support

Installation Instructions

Windows
macOS
Linux

Windows Installation

  1. Download the compiler (.exe file)
  2. Place the executable in a directory of your choice (e.g., C:\Tools\GPULang\)
  3. Add the directory to your PATH environment variable
  4. Open Command Prompt and verify the installation

Verify Installation:

gpulangc --help

macOS Installation

Step 1: Choose Your Architecture

  • Apple Silicon: Download the ARM64 version for Apple's custom processors
  • Intel Macs: Download the x86_64 version for Intel-based Macs
  • Unsure? Go to Apple Menu → "About This Mac" to check your processor

Installation Steps:

  1. Download the appropriate compiler binary for your Mac architecture
  2. Make the binary executable: chmod +x gpulangc
  3. Move it to a directory in your PATH (e.g., /usr/local/bin/)
  4. Alternatively, add the binary's directory to your PATH

Architecture Detection (Optional):

uname -m

Returns "arm64" for Apple Silicon or "x86_64" for Intel

Verify Installation:

gpulangc --help

Linux Installation

  1. Download the compiler binary
  2. Make the binary executable:
chmod +x gpulangc
  1. Move it to a system directory or add to PATH:
sudo mv gpulangc /usr/local/bin/

Verify Installation:

gpulangc --help