disables LLVM in ACT, and adds note in README

This commit is contained in:
Eyck-Alexander Jentzsch 2025-04-29 08:37:19 +02:00
parent f0cf3ea154
commit 5b86f90bbf
2 changed files with 7 additions and 6 deletions

10
Jenkinsfile vendored
View File

@ -37,19 +37,19 @@ pipeline {
steps {
sh '''
for core in TGC5A TGC5B TGC5D TGC5E TGC5F RV32GC; do
for backend in interp llvm tcc asmjit; do
for backend in interp 'llvm' tcc asmjit; do
TGC-GEN/scripts/generate_iss.sh -o dbt-rise-tgc/ -c $core -b ${backend} TGC-GEN/CoreDSL/${core}.core_desc
done
done
for core in TGC6B TGC6C TGC6D TGC6E RV64GC; do
for backend in interp llvm asmjit; do
for backend in interp 'llvm' asmjit; do
TGC-GEN/scripts/generate_iss.sh -o dbt-rise-tgc/ -c $core -b ${backend} TGC-GEN/CoreDSL/${core}.core_desc
done
done
'''
sh 'conan profile detect --force'
sh 'rm -rf build'
sh 'cmake -S . -B build --preset Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=ON'
sh 'cmake -S . -B build --preset Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=OFF'
sh 'cmake --build build -j'
sh 'build/dbt-rise-tgc/tgc-sim --isa ?'
}
@ -73,7 +73,7 @@ pipeline {
}
axis {
name 'BACKEND'
values 'interp', 'llvm', 'tcc', 'asmjit'
values 'interp', /*'llvm',*/ 'tcc', 'asmjit'
}
}
stages {
@ -95,7 +95,7 @@ pipeline {
}
axis {
name 'BACKEND'
values 'interp', 'llvm', 'asmjit'
values 'interp', /*'llvm',*/ 'asmjit'
}
}
stages {

View File

@ -7,7 +7,8 @@ This ISS is based in DBT-RISE, a library to allow rapid ISS creation.
## Quick start
* you need to have a C++14 capable compiler, make or ninja, python, and cmake installed
> **Warning:** With the Usage of conan2 the LLVM backend became deprecated as there is no conan package available yet.
### common setup
* install conan.io (see also http://docs.conan.io/en/latest/installation.html):