haumea-lang / haumea-rs

Haumea is an experimental language designed to be simple and easy to learn and program in.
MIT License
7 stars 2 forks source link

Provide precompiled Haumea binaries #10

Open bates64 opened 7 years ago

bates64 commented 7 years ago

I had to install Rust because of Haumea!

But seriously, if you make, like, a Makefile to automatically drop a bunch of binaries in, say, a directory bin, then there's no dependencies - aside from C (which everyone has anyway)! Just ungitignore target/build and push your compiled binaries to GitHub?

$ git clone https://github.com/BookOwl/haumea.git
$ cd haumea
$ ./bin/haumea < hi.hau > hi
$ ./hi
BookOwl commented 7 years ago

@nanalan, just run $ cargo build --release, and find the generated haumea binary.

bates64 commented 7 years ago

@BookOwl I know, but since this language is for beginners.. it'd be nice to provide releases, no?

BookOwl commented 7 years ago

I meant that's what you have to do to get the binary to release. :P

bates64 commented 7 years ago

I know that, silly :package:

well not the --release part, but it worked anyway

BookOwl commented 7 years ago

I think that we need to make sure that Haumea actually works before we start worrying about providing binaries.