<div dir="ltr"><div>Exactly what does "make" and "make check-all" produce as output? I'm not at all familiar with that concept, but the overall build script is similar to what my Pascal compiler does (aside from using git rather than SVN to fetch the llvm and clang sources)... You may be missing some pre-requisit, or have too new of something?<br><br>--<br></div>Mats<br></div><div class="gmail_extra"><br><div class="gmail_quote">On 12 June 2017 at 14:50, Ludwig, Marc via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi there ...<br>
<br>
I tried to build an compiler front-end for the m-language on top of LLVM from [this](<a href="https://github.com/f-akazawa/mlang" rel="noreferrer" target="_blank">https://github.com/f-<wbr>akazawa/mlang</a>) GitHub repo.<br>
The build went through but no binaries for the specific front-end where generated.<br>
<br>
I've tried it this way:<br>
```<br>
# source directory<br>
LLVM_ROOT=$(pwd)<br>
# pull in llvm sources<br>
svn co <a href="http://llvm.org/svn/llvm-project/llvm/branches/release_31" rel="noreferrer" target="_blank">http://llvm.org/svn/llvm-<wbr>project/llvm/branches/release_<wbr>31</a> llvm<br>
# pull in clang<br>
cd llvm/tools || exit $?<br>
svn co <a href="http://llvm.org/svn/llvm-project/cfe/branches/release_31" rel="noreferrer" target="_blank">http://llvm.org/svn/llvm-<wbr>project/cfe/branches/release_<wbr>31</a> clang<br>
# pull in mlang<br>
git clone <a href="https://github.com/f-akazawa/mlang.git" rel="noreferrer" target="_blank">https://github.com/f-akazawa/<wbr>mlang.git</a><br>
cd "$LLVM_ROOT" || exit $?<br>
mkdir build && cd build || exit $?<br>
"$LLVM_ROOT"/llvm/configure --enable-optimized --enable-targets="host-only"<br>
make<br>
make check-all<br>
```<br>
Anyone an idea what i'am missing?<br>
<br>
PS: I've also tried it on the llvm irc node, but there's no one responding.<br>
<br>
Thank you for your time and best regards,<br>
<br>
Marc<br>
______________________________<wbr>_________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/llvm-dev</a><br>
</blockquote></div><br></div>