about summary refs log tree commit diff stats
path: root/wrapperhelper
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2023-05-05 15:38:01 +0800
committerGitHub <noreply@github.com>2023-05-05 09:38:01 +0200
commita9099ce2c19af969b0ece90d8adcef963eb86699 (patch)
tree4a029b4cb3fd00bb81f287e4ae784371a4abad00 /wrapperhelper
parentad9fc59d19c13f19ca88bef3861ce99f752a085e (diff)
downloadbox64-a9099ce2c19af969b0ece90d8adcef963eb86699.tar.gz
box64-a9099ce2c19af969b0ece90d8adcef963eb86699.zip
Added some mpg123 wrapped functions (#762)
* Added some mpg123 wrapped functions

* Added a warning to wrapperhelper README
Diffstat (limited to 'wrapperhelper')
-rw-r--r--wrapperhelper/README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/wrapperhelper/README.md b/wrapperhelper/README.md
index cedce959..1edd4db1 100644
--- a/wrapperhelper/README.md
+++ b/wrapperhelper/README.md
@@ -1,5 +1,8 @@
 # Wrapper helper
 
+**WARNING: There are still many problems with this tool. Please do NOT submit code generated directly by the tool, you should only use it as a preliminary reference.**
+
+
 This tool is based on libclangtooling.
 
 It parses the AST of the library header files, generating the required structures of the wrapping library, including:
@@ -10,6 +13,15 @@ etc. Of course, this cannot completely automate everything, it can only be used
 
 At the same time, this tool is also quite rough, and may even have errors.
 
+## Build
+
+```
+sudo apt install libclang-14-dev
+cd wrapperhelper
+mkdir build; cd build; cmake ..
+make
+```
+
 ## Usage:
 
     helper <filename> <libname> [guest_triple] [host_triple] -- <clang_flags>