Jianping Zeng
Jianping Zeng
The linker gives me an error "/usr/bin/ld: error: linux_version.map:24:4: invalid character" BTW, a minor typo in my previous reply. My OS version is Ubuntu 16.04.
I solved that problem which is caused by an extra newline character at the end of the linux_version.map. Just delete it. It would be fine!
But, there is another problem happens when I try to run make tests even with the modified linux_version.map used. ./Subtype.binary: relocation error: /usr/lib/jdk/jdk1.7.0/jre/lib/amd64/libjava.so: symbol JVM_GetClassLoader, version SUNWprivate_1.1 not defined in...
I have cleaned everything and recompiled it. The same problem is there.
@tehranixyz You can use llvm-as of LLVM 5.0 to transform the generated .ll file to llvm-5.0 bitcode which is supported in any version of LLVM after 5.0, the reason is...
Only the x86 target is supported currently, all target description file were written by myself manually. I have a plan to use Burg or table-based like LLVM to generate automatically...
Do you have interests to accomplish this goal? I am so happy to invite you to join this project!!! You can email to me on [email protected], i am please to...
It may be disappoint you since the frontend (named of jlang) and code gen from AST to ir have some tasks that are not completed yet. The architecture of this...
@wgaylord Hi, this project has matured for re-targeting to other architecture, such as MIPS, ARM. Procedures for re-targeting are same as LLVM, so you can refer to [LLVM CodeGenerator](https://llvm.org/docs/CodeGenerator.html). But...
xcc-project leverages CMake build system to generate some target-dependent source files, which makes it is hard to add IntelliJ project configuration file. However, it is easy for you to use...