Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
See what's new at GitLab
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
inko
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
43
Issues
43
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Inko
inko
Commits
392702e0
Verified
Commit
392702e0
authored
Dec 30, 2019
by
Yorick Peterse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Expand installation instructions a bit more
parent
22328acc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
+33
-0
README.md
README.md
+33
-0
No files found.
README.md
View file @
392702e0
...
...
@@ -34,12 +34,29 @@ this time. Inko only supports 64-bits architectures.
## Requirements
Building from source requires the following software to be available:
*
Ruby 2.3 or newer and RubyGems, for the compiler
*
Rust 1.34 or newer, using the 2018 edition
*
Make 4.0 or newer
For Unix systems or MSYS2 on Windows you also need the following software:
*
autoconf
*
automake
*
clang
*
libtool
## Installation
Detailed installation instructions about the installation process can be found
at
[
Installing Inko
](
https://inko-lang.org/install/
)
on the Inko website.
### For users
If you want to install Inko from source and just use it (instead of hacking on
the code), follow the steps outlined below.
Installing all components can be done as follows:
make install
...
...
@@ -68,6 +85,22 @@ Instead, use either the full path or use the `$HOME` variable:
make install PREFIX=$HOME/.local/share/inko
make install PREFIX=/home/alice/.local/share/inko
### For developers
Assuming you have cloned the repository, run the following:
make -C vm profile
This will compile the VM in release mode, with debugging symbols included. You
can then run Inko programs as follows:
env RUBYLIB=./compiler/lib ./compiler/bin/inko \
--vm vm/target/release/ivm \
-i runtime/src/ \
PATH/TO/FILE.inko
Here
`PATH/TO/FILE.inko`
would be the program to run.
## License
All source code in this repository is licensed under the Mozilla Public License
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment