polyglot-compiler / JLang

JLang: Ahead-of-time compilation of Java programs to LLVM
http://polyglot-compiler.github.io/JLang/
Other
284 stars 29 forks source link

How to use jlang in the maven or gradle Java project? #60

Open Marvinmw opened 4 years ago

Marvinmw commented 4 years ago

I read JLang docs and examples. Is there any wa to use it maven or graddle. My project is a little complex and use the third lobraries.

dz333 commented 4 years ago

We don't currently have any Maven integration support with JLang, unfortunately.

Additionally, you cannot link pre-compiled JAR files (such as pre-compiled third party libraries) with JLang-compiled code, at present. You must have all of your source files as *.java files, which you then compile using our tools. The Hello World and Building Larger Project examples on the getting started page show how you might go about this.