tmiw/kite-llvm
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more.
- Open with GitHub Desktop
- Download ZIP
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
This repository contains the current source code for the Kite LLVM "port" (more like a total rewrite). I hope to avoid many of the mistakes I made when I wrote the code that would later become the 1.0 release. Right now, enough of Kite has been implemented to allow for the execution of simple scripts (see the tests/ folder for details). This version is definitely not nearly ready for prime time. You have been warned. PREREQUISITES: -------------- * LLVM >= 3.0 (install the development packages your distro provides) * C++ compiler (tested on g++ 4.2.1 on OSX, 4.5.3 on Debian) * Bison/Flex (for parsing) * Boost: Regex (for System.regex) * Boehm GC (http://www.hpl.hp.com/personal/Hans_Boehm/gc/) BUILDING: --------- $ autoreconf -i $ ./configure --with-gc=/usr/local (or other path to libgc) $ make [wait several minutes] $ make check $ make install USAGE: ------ $ ./kite "hello world"|print; ^D hello world $ ./ikt Interactive Kite console ikt> "hello world"|print; ---> hello world ikt> ^D $ MORE INFO: ---------- http://www.kite-language.org/