jacobly0 / llvm-project

This fork of the canonical git mirror of the LLVM subversion repository adds (e)Z80 targets. Please refer to the wiki for important build instructions.
https://github.com/jacobly0/llvm-project/wiki
123 stars 15 forks source link

ez80 target not building by default #16

Closed alexandre-lecoq closed 3 years ago

alexandre-lecoq commented 3 years ago

Hello,

I checked out the z80 branch and run the following commands : PS C:\dev\llvmbuild> cmake ..\llvm-project\llvm\ PS C:\dev\llvmbuild> cmake --build .

It build a debug version of llvm but does not include the z80 target. The llvm documentation indicated all targets are included by default.

My environment is windows 10 + VS 2019

adriweb commented 3 years ago

It's an experimental target.

Take a look at the instructions here: https://github.com/jacobly0/llvm-project/wiki

jacobly0 commented 3 years ago

Yep, specifically you need to configure cmake with -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=Z80.

alexandre-lecoq commented 3 years ago

Thanks