Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
typon-compiler
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
typon
typon-compiler
Commits
70c79061
Commit
70c79061
authored
Apr 24, 2024
by
Tom Niget
Committed by
Xavier Thompson
Apr 26, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update README and install instructions
parent
9c7915df
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
19 deletions
+35
-19
README.md
README.md
+35
-19
No files found.
README.md
View file @
70c79061
...
...
@@ -4,32 +4,29 @@ Typon is a two-part project to bring practical GIL-free concurrency to Python:
1.
[
`typon-concurrency`
](
https://lab.nexedi.com/typon/typon-concurrency
)
, a C++ concurrency runtime
2.
typon-compiler (this repository), a compiler from Python syntax into C++
## Directory structure
### `docs`, documentation
Currently using Sphinx.
### `include`, standard library and compiler primitives/intrisics
TODO.
### `runtime`, concurrency runtime (Git submodule)
See the
[
runtime repository
](
https://lab.nexedi.com/typon/typon-concurrency
)
.
### `trans`, transpiler
## Getting started
This repository, TODO.
### Install
##
Getting started
##
## From code
```
bash
git clone https://lab.nexedi.com/typon/typon-compiler.git
--recursive
python3
-m
venv typenv
source
typenv/bin/activate
pip
install
./typon-compiler
apt
install
libfmt-dev liburing-dev python3.12-dev libssl-dev
```
#### From PyPI
```
pip install typon
```
### Install dependencies
```
apt install g++-13 libfmt-dev liburing-dev python3.12-dev libssl-dev
```
## Basic usage
...
...
@@ -43,11 +40,30 @@ typon [-o/--output output] [-d/--debug] [-v/--verbose] input
Once generated, the C++ code file can be compiled using your compiler of choice:
```
$(CXX) -O3
input.cpp $(typon --cpp-flags)
$(CXX) -O3
$(typon --cpp-flags) input.cpp
```
Currently, you'll get the best support with G++ 13.
## Directory structure
### `docs`, documentation
Currently using Sphinx.
### `include`, standard library and compiler primitives/intrinsics
TODO.
### `runtime`, concurrency runtime (Git submodule)
See the
[
runtime repository
](
https://lab.nexedi.com/typon/typon-concurrency
)
.
### `trans`, transpiler
This repository, TODO.
## Test harness
`cd`
into the
`trans`
directory, set up your
`.env`
file (you can copy the
`.env.example`
file), and run
`python3 test_runner.py`
.
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