Download GPULang
Get the latest version of GPULang for your operating system
Latest Version: Loading...
Checking for latest release...
Windows
Requirements:
Windows 10/11 (64-bit)
Windows 10/11 (64-bit)
macOS
Requirements:
macOS 12.0+ (Monterey)
macOS 12.0+ (Monterey)
Linux
Requirements:
Ubuntu 20.04+ / Fedora 35+
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
- Download the compiler (.exe file)
- Place the executable in a directory of your choice (e.g.,
C:\Tools\GPULang\
) - Add the directory to your PATH environment variable
- 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:
- Download the appropriate compiler binary for your Mac architecture
- Make the binary executable:
chmod +x gpulangc
- Move it to a directory in your PATH (e.g.,
/usr/local/bin/
) - 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
- Download the compiler binary
- Make the binary executable:
chmod +x gpulangc
- Move it to a system directory or add to PATH:
sudo mv gpulangc /usr/local/bin/
Verify Installation:
gpulangc --help