Sujet : Re: Bliss
De : goathunter (at) *nospam* goatley.com (Hunter Goatley)
Groupes : comp.os.vmsDate : 12. Jul 2024, 15:41:38
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v6rfb3$31ano$6@dont-email.me>
References : 1 2 3
User-Agent : Mozilla Thunderbird Beta
On 7/12/2024 9:19 AM, Hunter Goatley wrote:
I've never been able to get Matt's compiler to build. I also haven't tried since I gained more experience working on Linux. I have meant to try again, but never have made the time.
Success! In addition to installing llvm-dev, I needed to install a specific llvm-dev. I chose the latest, llvm-15-dev, and then I had to edit one file to point to the new include directory:
$ diff llvm_helper.cpp llvm_helper.BAK
22,23c22,23
< #include "llvm/Support/Alignment.h"
< #include "llvm/Support/Host.h"
---
> #include "llvm/MC/Alignment.h"
> #include "llvm/MC/Host.h"
hunter@pmxx-u:llvmgen$
After I did that, Matt's blissc built cleanly. I have not yet tried to use it, but it does pass the checks.
Thanks for inspiring me to try again.
Hunter