aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index fc7d054..a96972f 100644
--- a/README.md
+++ b/README.md
@@ -10,6 +10,10 @@ Files have to be in utf-8 format and can optionally have utf-8 BOM.
Every stage of the compiler is multithreaded and data copy is kept to a minimal, for example tokenization
is done without storing tokens in a list. Almost all allocation is done using an arena allocator that
is only cleaned up once (when the compiler is finished), and the data is allocated sequentially.
+# Dependencies
+Right now only the C standard library (C89) is required for a release build. In the future dependency on the C standard library might be removed
+and then amalgam would have 0 dependencies.\
+python2 is needed for tests to run additional code analyzis.
# TODO
Build with -nostdlib and replace use of libc with syscalls (on linux).\
Don't parse files unless the variable they are assigned to (with @import) is used. This is useful when only using small parts of a library.