Ludwig, Marc via llvm-dev
2017-Jun-12 13:50 UTC
[llvm-dev] Building compiler front-end from GitHub source
Hi there ... I tried to build an compiler front-end for the m-language on top of LLVM from [this](https://github.com/f-akazawa/mlang) GitHub repo. The build went through but no binaries for the specific front-end where generated. I've tried it this way: ``` # source directory LLVM_ROOT=$(pwd) # pull in llvm sources svn co http://llvm.org/svn/llvm-project/llvm/branches/release_31 llvm # pull in clang cd llvm/tools || exit $? svn co http://llvm.org/svn/llvm-project/cfe/branches/release_31 clang # pull in mlang git clone https://github.com/f-akazawa/mlang.git cd "$LLVM_ROOT" || exit $? mkdir build && cd build || exit $? "$LLVM_ROOT"/llvm/configure --enable-optimized --enable-targets="host-only" make make check-all ``` Anyone an idea what i'am missing? PS: I've also tried it on the llvm irc node, but there's no one responding. Thank you for your time and best regards, Marc
mats petersson via llvm-dev
2017-Jun-12 13:55 UTC
[llvm-dev] Building compiler front-end from GitHub source
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? -- Mats On 12 June 2017 at 14:50, Ludwig, Marc via llvm-dev <llvm-dev at lists.llvm.org> wrote:> Hi there ... > > I tried to build an compiler front-end for the m-language on top of LLVM > from [this](https://github.com/f-akazawa/mlang) GitHub repo. > The build went through but no binaries for the specific front-end where > generated. > > I've tried it this way: > ``` > # source directory > LLVM_ROOT=$(pwd) > # pull in llvm sources > svn co http://llvm.org/svn/llvm-project/llvm/branches/release_31 llvm > # pull in clang > cd llvm/tools || exit $? > svn co http://llvm.org/svn/llvm-project/cfe/branches/release_31 clang > # pull in mlang > git clone https://github.com/f-akazawa/mlang.git > cd "$LLVM_ROOT" || exit $? > mkdir build && cd build || exit $? > "$LLVM_ROOT"/llvm/configure --enable-optimized --enable-targets="host-only" > make > make check-all > ``` > Anyone an idea what i'am missing? > > PS: I've also tried it on the llvm irc node, but there's no one responding. > > Thank you for your time and best regards, > > Marc > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170612/5f05e0c5/attachment.html>