search for: dllvm_experimental_targets_to_build

Displaying 20 results from an estimated 22 matches for "dllvm_experimental_targets_to_build".

2018 Nov 26
2
Have LLD and Clang in their correct locations, but still can't generate project files for LLVM
I ran CMake on the command line with this command: " cmake .. -DCMAKE_INSTALL_PREFIX=../install_x64 -T host=x64 -G "Visual Studio 15 2017 Win64" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly " And I have LLD and Clang where they should be. But I still couldn't generate project files. The path to the build and installation directories don't have spaces at all this time, either. I'm attaching the logs to this message. Please help. -------------- next par...
2018 Nov 26
3
Have LLD and Clang in their correct locations, but still can't generate project files for LLVM
...n Mon, Nov 26, 2018 at 8:53 AM Osman Zakir via llvm-dev <llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org>> wrote: I ran CMake on the command line with this command: " cmake .. -DCMAKE_INSTALL_PREFIX=../install_x64 -T host=x64 -G "Visual Studio 15 2017 Win64" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly " And I have LLD and Clang where they should be. But I still couldn't generate project files. The path to the build and installation directories don't have spaces at all this time, either. I'm attaching the logs to this message. Please help. _______________________...
2017 Jun 09
5
Cannot build Clang/LLVM on Windows with LLVM_BUILD_LLVM_DYLIB
...: Visual Studio 2017 CMake configuration: cmake -GNinja -Bbuild -Hllvm -DCMAKE_BUILD_TYPE=Release -DLLVM_INCLUDE_EXAMPLES=OFF -DLLVM_INCLUDE_TESTS=OFF -DCMAKE_INSTALL_PREFIX=d:\a\1\b -DLLVM_TARGETS_TO_BUILD=X86 -DLLVM_INSTALL_TOOLCHAIN_ONLY=ON -DLLVM_BUILD_LLVM_DYLIB=ON -DLLVM_LINK_LLVM_DYLIB=ON -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly
2017 Oct 14
2
What's LLVM{target}CodeGen vs {target}CodeGen?
...TMS9900 And finally, TMS9900.td contains: include "llvm/Target/Target.td" def TMS9900 : Target { } I also updated lib/Target/LLVMBuild.txt's [common] subdirectories to include TMS9900. *The punchline:* Now, I tried to run cmake: $ cd build $ cmake -G "Unix Makefiles" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=TMS9900 ../llvm ... stuff ... CMake Error at cmake/modules/LLVM-Config.cmake:178 (message): Target TMS9900 is not in the set of libraries. Call Stack (most recent call first): cmake/modules/AddLLVM.cmake:525 (llvm_map_components_to_libnames) cmake/modules/AddLLVM.cmake:574 (llvm_add_library)...
2018 Nov 23
2
Couldn't successfully generate project files for LLVM (checked out from trunk)
...er things, wasn't found (even though put all of those in the documented directories inside the LLVM source tree). And a lot of the tests failed. I'm attaching the CMake error and output logs to this message. Please help me out. I'm trying to build it from source and added the "-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly". I'm not trying to ask for help on targeting WebAssembly, though, but only on building LLVM from source. For now it's specifically generating Visual Studio 2017 project files. I added the -Thost=x64 flag to CMake as well, but it still seemed to target x86. Why? Anyway...
2019 Mar 21
3
A question about "make check-all"
Hello, I have successfully build the newest llvm from git source, and I would like to do some experiments on target AVR. Does "make check-all" cover AVR? All I need some extra steps to test AVR? I have neither AVR simulator nor real AVR board connected. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2019 Jan 01
3
llvm-config deprecation
My build process: $ cd llvm/ $ mkdir build $ cd build $ cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/local -DCMAKE_PREFIX_PATH=$HOME/local -DCMAKE_BUILD_TYPE=Release -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="WebAssembly;AVR;RISCV" -DLLVM_ENABLE_LIBXML2=OFF $ make install $ cd clang/ $ mkdir build $ cd build $ cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/local -DCMAKE_PREFIX_PATH=$HOME/local -DCMAKE_BUILD_TYPE=Release $ make install This is trunk. When I do this, I get the following warning: -- F...
2015 Jun 10
2
[LLVMdev] Contributing a buildbot for the BPF backend
...easy to configure, but builders.py > looks more convoluted. I think the attached patch is a start for the > build part, but of course I have no idea if it makes any sense :) > The idea would be to replicate the following workflow (build > experimental backend + tests): > > cmake -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=BPF ../path/to/src/ > make -jX > ./bin/llvm-lit test/CodeGen/BPF/ > > > Any suggestion would be appreciated. > > Thanks! > > Regards, > > Marco Leogrande > > Sent by a carbon-based life form; hence, it may contain repetitions, > inaccuracies, logical fallac...
2018 Nov 27
3
Have LLD and Clang in their correct locations, but still can't generate project files for LLVM
...gt; > On Mon, Nov 26, 2018 at 8:53 AM Osman Zakir via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > > I ran CMake on the command line with this command: > " > cmake .. -DCMAKE_INSTALL_PREFIX=../install_x64 -T host=x64 -G "Visual > Studio 15 2017 Win64" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly > " > > And I have LLD and Clang where they should be. But I still couldn't > generate project files. The path to the build and installation directories > don't have spaces at all this time, either. I'm attaching the logs to this > message. Please...
2015 May 08
2
[LLVMdev] Contributing a buildbot for the BPF backend
Hi everyone, I am working with Alexei Starovoitov to contribute an LLVM buildbot for the experimental BPF backend. I am following the steps at [1] to setup a buildbot and I was mostly successful: I was able to setup a slave and a temporary master to check its base config. Now I'm not sure about the next step: patching the "slaves.py" and "builders.py" files in zorg. * Is
2015 Jun 17
2
[LLVMdev] Contributing a buildbot for the BPF backend
...looks more convoluted. I think the attached patch is a start for the >>> build part, but of course I have no idea if it makes any sense :) >>> The idea would be to replicate the following workflow (build >>> experimental backend + tests): >>> >>> cmake -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=BPF ../path/to/src/ >>> make -jX >>> ./bin/llvm-lit test/CodeGen/BPF/ >>> >>> >>> Any suggestion would be appreciated. >>> >>> Thanks! >>> >>> Regards, >>> >>> Marco Leogrande >>> >>&gt...
2015 Jun 18
2
[LLVMdev] Contributing a buildbot for the BPF backend
...patch is a start for the >> >>> build part, but of course I have no idea if it makes any sense :) >> >>> The idea would be to replicate the following workflow (build >> >>> experimental backend + tests): >> >>> >> >>> cmake -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=BPF ../path/to/src/ >> >>> make -jX >> >>> ./bin/llvm-lit test/CodeGen/BPF/ >> >>> >> >>> >> >>> Any suggestion would be appreciated. >> >>> >> >>> Thanks! >> >>> >> >&gt...
2018 Nov 28
2
Have LLD and Clang in their correct locations, but still can't generate project files for LLVM
...n Mon, Nov 26, 2018 at 8:53 AM Osman Zakir via llvm-dev <llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org>> wrote: I ran CMake on the command line with this command: " cmake .. -DCMAKE_INSTALL_PREFIX=../install_x64 -T host=x64 -G "Visual Studio 15 2017 Win64" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly " And I have LLD and Clang where they should be. But I still couldn't generate project files. The path to the build and installation directories don't have spaces at all this time, either. I'm attaching the logs to this message. Please help. _______________________...
2018 Mar 23
0
check_include_file not respecting CMAKE_PREFIX_PATH
...rap/out/native/include/zlib.h /home/andy/misc/bootstrap/out/native/include/zlib.h: C source, ASCII text $ cmake /home/andy/misc/bootstrap/llvm-6.0.0.src -DCMAKE_PREFIX_PATH=/home/andy/misc/bootstrap/out/native -DCMAKE_INSTALL_PREFIX=/home/andy/misc/bootstrap/out/native -DCMAKE_BUILD_TYPE=Release -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly; \ -- Looking for zlib.h - not found I propose to use find_path and find_library instead of check_include_file. Shall I submit a patch? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180323/...
2017 Jan 03
2
LLVM WebAssembly target
Hello. Excuse me. Why CMakeLists.txt from llvm-3.9.1.src does not contain WebAssembly target? So, it is like set(LLVM_ALL_TARGETS AArch64 AMDGPU ARM BPF Hexagon Mips MSP430 NVPTX PowerPC Sparc SystemZ X86 XCore ) but not like set(LLVM_ALL_TARGETS AArch64 AMDGPU ARM BPF Hexagon Mips MSP430 NVPTX PowerPC Sparc SystemZ Webassembly X86
2019 Jun 08
2
Help Building LLVM for Android
Hey Guys, I'm working on a project in Android related to System-level Audio DSP Effects for Tuning Android Audio. I want to leverage Faust ( https://faust.grame.fr/) to allow users to program their own filters. Faust provides a libfaust implementation which includes a JIT Compiler which leverages LLVM and seems to be the best path for me to use. Unfortunately I'm having problems
2020 Apr 23
7
Cannot build master
...-DLLVM_BUILD_LLVM_DYLIB=ON \ -DLLVM_LINK_LLVM_DYLIB=ON \ -DBUILD_SHARED_LIBS=OFF \ -DLLVM_ENABLE_EH=ON \ -DLLVM_ENABLE_RTTI=ON \ -DLLVM_HOST_TRIPLE=x86_64-pc-linux-gnu \ -DLLVM_TARGETS_TO_BUILD="AMDGPU;MSP430;WebAssembly;X86" \ -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="AVR" \ -DLLVM_ENABLE_PROJECTS="all" \ -G "Ninja" ../llvm The final errors were: [5802/7319] : && /usr/lib/llvm/10/bin/clang++ -fPIC -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-pa...
2018 Nov 29
2
Errors in configuration for LLVM with CMake GUI
I don't know what executable to point it to for SVN because, like I said before, I just right click where I want to check something out and click what I need in the context menu. So I need to know what executable to point it to. ________________________________ From: Osman Zakir <osmanzakir90 at hotmail.com> Sent: Thursday, November 29, 2018 11:06 PM To: Zachary Turner; llvm-dev at
2020 Jan 13
2
Attempt to build MLIR.
These errors seem pretty pervasive for me on a clean build. It appears that it arises because when tablegen'd headers are included in a .h file, every place where that .h file is used needs a dependency on the corresponding IncGen targets. This seems broken in the short term and unmaintainable in the long term. There really needs to be a way of automatically generating the right
2020 Apr 23
3
Cannot build master
...ALL_PREFIX=$HOME/opt/llvm11-git \ -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS=ON \ -DLLVM_ENABLE_EH=ON \ -DLLVM_ENABLE_RTTI=ON \ -DLLVM_HOST_TRIPLE=x86_64-pc-linux-gnu \ -DLLVM_TARGETS_TO_BUILD="AMDGPU;MSP430;WebAssembly;X86" \ -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="AVR" \ -DLLVM_ENABLE_PROJECTS="all" \ -G "Ninja" ../llvm On 23/04/2020 18:04, Juneyoung Lee wrote: >  Can you try DBUILD_SHARED_LIBS=ON ? I saw the error when I compiled a > custom pass with shared libs off & passed it to opt.  > > O...