Displaying 20 results from an estimated 22 matches for "dllvm_build_exampl".
Did you mean:
dllvm_build_examples
2018 Sep 19
2
CMake build of LLVM/clang with -DCMAKE_BUILD_TYPE=Release does not create release versions?
...m/llvm-mirror/llvm
tools
clang <-- git clone https://github.com/llvm-mirror/clang
llvm_build
Debug build: clean build, llvm_build is deleted before
llvm_build> cmake -Thost=x64 -G "Visual Studio 15 2017 Win64"
-DCMAKE_BUILD_TYPE=Debug -DLLVM_TARGETS_TO_BUILD=host
-DLLVM_BUILD_EXAMPLES=1 -DCLANG_BUILD_EXAMPLES=1
-DLLVM_INCLUDE_TESTS=OFF -DLLVM_INCLUDE_DOCS=OFF ..\llvm
builds for hours, a few warning, no errors -> llvm_build is ~44GB
i can find many working libs/exes(also examples) in
llvm_build\Debug\(lib|bin)
then i tried to build release versions
Release build: clean...
2018 Sep 19
4
CMake build of LLVM/clang with -DCMAKE_BUILD_TYPE=Release does not create release versions?
...clang <-- git clone https://github.com/llvm-mirror/clang
> llvm_build
>
> Debug build: clean build, llvm_build is deleted before
>
> llvm_build> cmake -Thost=x64 -G "Visual Studio 15 2017 Win64"
> -DCMAKE_BUILD_TYPE=Debug -DLLVM_TARGETS_TO_BUILD=host
> -DLLVM_BUILD_EXAMPLES=1 -DCLANG_BUILD_EXAMPLES=1
> -DLLVM_INCLUDE_TESTS=OFF -DLLVM_INCLUDE_DOCS=OFF ..\llvm
>
> builds for hours, a few warning, no errors -> llvm_build is ~44GB
>
> i can find many working libs/exes(also examples) in
> llvm_build\Debug\(lib|bin)
>
> then i tried to build rel...
2019 Apr 16
3
Opt plugin linkage
...ch llvm libs I can't link with a dynamically loaded plugin?
How can I use the EngineBuilder in my plugin with proper symbol resolution?
For reproductivity:
cmake -G "Sublime Text 2 - Ninja" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DLLVM_EXPORT_SYMBOLS_FOR_PLUGINS=ON -DLLVM_BUILD_TESTS=ON -DLLVM_BUILD_EXAMPLES=ON -DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra" -DLLVM_TOOL_CLANG_BUILD=ON -DLLVM_TOOL_CLANG_TOOLS_EXTRA=ON -DLLVM_OPTIMIZED_TABLEGEN=ON -DCLANG_BUILD_EXAMPLES=ON -DCLANG_PLUGIN_SUPPORT=ON
Hope someone can help me out.
Viktor
-------------- next part --------------
An HTML attachme...
2018 Sep 19
2
CMake build of LLVM/clang with -DCMAKE_BUILD_TYPE=Release does not create release versions?
...> > llvm_build
> > >
> > > Debug build: clean build, llvm_build is deleted before
> > >
> > > llvm_build> cmake -Thost=x64 -G "Visual Studio 15 2017 Win64"
> > > -DCMAKE_BUILD_TYPE=Debug -DLLVM_TARGETS_TO_BUILD=host
> > > -DLLVM_BUILD_EXAMPLES=1 -DCLANG_BUILD_EXAMPLES=1
> > > -DLLVM_INCLUDE_TESTS=OFF -DLLVM_INCLUDE_DOCS=OFF ..\llvm
> > >
> > > builds for hours, a few warning, no errors -> llvm_build is ~44GB
> > >
> > > i can find many working libs/exes(also examples) in
> > > ll...
2012 Mar 28
2
[LLVMdev] Building past few days with Clang++ and Clang produces errors on Cmake for Debian Linux
....../clang++ as follows:
> mdriftmeyer at horus:~/DeveloperProjects/LLVMProject/cmake-llvm$ cmake
> -DCMAKE_BUILD_TYPE=MinSizeRel
> -DCMAKE_CXX_COMPILER=/usr/local/bin/clang++
> -DCMAKE_C_COMPILER=/usr/local/bin/clang -DCMAKE_CXX_FLAGS='-O2'
> CMAKE_C_FLAGS='-O2' -DLLVM_BUILD_EXAMPLES=ON -DLLVM_BUILD_TESTS=ON
> -DLLVM_INCLUDE_TESTS=ON
> -DLLVM_TARGETS_TO_BUILD='ARM;CppBackend;PTX;Hexagon;X86' ../trunk/llvm/
> -- Target triple: x86_64-unknown-linux-gnu
> -- Native target architecture is X86
> -- Threads enabled.
> -- Building with -fPIC
> -- Const...
2015 Jul 08
2
[LLVMdev] Excluding project builds
...ning the cmake build.
>>
>> Is there a way to disable the build of a subdirectory in llvm/projects?
>> I'm getting a build error on one project and don't want it to hold up
>> the build of everything else.
>
> In your LLVM build directory run
>
> $ cmake -DLLVM_BUILD_EXAMPLES=OFF /path/to/llvm/source
>
> (note if you are using the makefile build you can run ``make
> edit_cache`` to do the above).
>
> If you are still having problems you could also set
> LLVM_INCLUDE_EXAMPLES to OFF.
>
> If you use ccmake or cmake gui these options are easily vi...
2015 Jul 07
2
[LLVMdev] Excluding project builds
I'm learning the cmake build.
Is there a way to disable the build of a subdirectory in llvm/projects?
I'm getting a build error on one project and don't want it to hold up
the build of everything else.
Thanks!
-David
2016 Mar 14
2
LLVM-3.8.0 libcxx in-tree build fails with cmath error ::signbit has not been declared
...BOSE_MAKEFILE=ON \
-DCURSES_NEED_NCURSES=TRUE \
-DFFI_INCLUDE_DIR=$DESTROOT/lib/libffi-3.0.11/include \
-DFFI_LIBRARY_DIR=$DESTROOT/lib \
-DGCC_INSTALL_PREFIX=$GCC_ROOT \
-DLLVM_BINUTILS_INCDIR=${DESTROOT}/include \
-DLLVM_BUILD_32_BITS=OFF \
-DLLVM_BUILD_EXAMPLES=ON \
-DLLVM_ENABLE_CXX1Y=ON \
-DLLVM_ENABLE_EH=ON \
-DLLVM_ENABLE_FFI=ON \
-DLLVM_ENABLE_LIBCXX=ON \
-DLLVM_ENABLE_RTTI=ON \
-DLLVM_ENABLE_THREADS=ON \
-DLLVM_ENABLE_ZLIB=ON \
-DLLVM_INCLUDE_EXAMPLES=ON \
-DLLVM_INCLUDE_UTILS...
2018 Sep 20
6
CMake build of LLVM/clang with -DCMAKE_BUILD_TYPE=Release does not create release versions?
...>>> > > Debug build: clean build, llvm_build is deleted before
>>> > >
>>> > > llvm_build> cmake -Thost=x64 -G "Visual Studio 15 2017 Win64"
>>> > > -DCMAKE_BUILD_TYPE=Debug -DLLVM_TARGETS_TO_BUILD=host
>>> > > -DLLVM_BUILD_EXAMPLES=1 -DCLANG_BUILD_EXAMPLES=1
>>> > > -DLLVM_INCLUDE_TESTS=OFF -DLLVM_INCLUDE_DOCS=OFF ..\llvm
>>> > >
>>> > > builds for hours, a few warning, no errors -> llvm_build is ~44GB
>>> > >
>>> > > i can find many working libs/...
2016 Sep 20
4
(Thin)LTO llvm build
The configuration we’re mentioning is a 2-stage bootstrap: You need first to build without LTO your own clang, and then use it for the LTO build.
—
Mehid
> On Sep 20, 2016, at 10:17 AM, Michael Kruse <llvmdev at meinersbur.de> wrote:
>
> I am the author of Polly's/ISL's platform tests and could reproduce
> the problem on my system with this error message:
>
>
2016 Mar 14
2
LLVM-3.8.0 libcxx in-tree build fails with cmath error ::signbit has not been declared
...BOSE_MAKEFILE=ON \
-DCURSES_NEED_NCURSES=TRUE \
-DFFI_INCLUDE_DIR=$DESTROOT/lib/libffi-3.0.11/include \
-DFFI_LIBRARY_DIR=$DESTROOT/lib \
-DGCC_INSTALL_PREFIX=$GCC_ROOT \
-DLLVM_BINUTILS_INCDIR=${DESTROOT}/include \
-DLLVM_BUILD_32_BITS=OFF \
-DLLVM_BUILD_EXAMPLES=ON \
-DLLVM_ENABLE_CXX1Y=ON \
-DLLVM_ENABLE_EH=ON \
-DLLVM_ENABLE_FFI=ON \
-DLLVM_ENABLE_LIBCXX=ON \
-DLLVM_ENABLE_RTTI=ON \
-DLLVM_ENABLE_THREADS=ON \
-DLLVM_ENABLE_ZLIB=ON \
-DLLVM_INCLUDE_EXAMPLES=ON \
-DLLVM_INCLUDE_UTILS...
2019 Apr 16
2
Opt plugin linkage
...m libs I can't link with a dynamically loaded plugin?
How can I use the EngineBuilder in my plugin with proper symbol resolution?
For reproductivity:
cmake -G "Sublime Text 2 - Ninja" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DLLVM_EXPORT_SYMBOLS_FOR_PLUGINS=ON -DLLVM_BUILD_TESTS=ON -DLLVM_BUILD_EXAMPLES=ON -DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra" -DLLVM_TOOL_CLANG_BUILD=ON -DLLVM_TOOL_CLANG_TOOLS_EXTRA=ON -DLLVM_OPTIMIZED_TABLEGEN=ON -DCLANG_BUILD_EXAMPLES=ON -DCLANG_PLUGIN_SUPPORT=ON
Hope someone can help me out.
Viktor
LLVM Developers mailing list
llvm-dev at lists.l...
2012 Dec 04
0
[LLVMdev] Minimum Python Version
> -----Original Message-----
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu]
> On Behalf Of Philip Reames
> Sent: Monday, December 03, 2012 9:51 PM
> To: llvmdev at cs.uiuc.edu
> Subject: Re: [LLVMdev] Minimum Python Version
>
>
>
> On 12/03/2012 01:53 PM, Joshua Cranmer wrote:
> > I don't know any hard examples off the top
2019 Apr 18
3
Opt plugin linkage
...ich llvm libs I can't link with a dynamically loaded plugin?
How can I use the EngineBuilder in my plugin with proper symbol resolution?
For reproductivity:
cmake -G "Sublime Text 2 - Ninja" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DLLVM_EXPORT_SYMBOLS_FOR_PLUGINS=ON -DLLVM_BUILD_TESTS=ON -DLLVM_BUILD_EXAMPLES=ON -DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra" -DLLVM_TOOL_CLANG_BUILD=ON -DLLVM_TOOL_CLANG_TOOLS_EXTRA=ON -DLLVM_OPTIMIZED_TABLEGEN=ON -DCLANG_BUILD_EXAMPLES=ON -DCLANG_PLUGIN_SUPPORT=ON
Hope someone can help me out.
Viktor
________________________________
LLVM Developers mailin...
2012 Dec 04
2
[LLVMdev] Minimum Python Version
On 12/03/2012 01:53 PM, Joshua Cranmer wrote:
> I don't know any hard examples off the top of my head, but I do
> definitely remember (while grepping through python docs earlier today)
> being surprised that some of the functions I use on a consistent basis
> turned out to have a minimum of python 2.6.
I have nothing concrete to point to from the LLVM world, but from my own
2016 Sep 26
2
(Thin)LTO llvm build
...gt; $ export CXX=clang CC=clang
>
> $ cmake \
> -G Ninja \
> -DCMAKE_BUILD_TYPE=Release \
> -DLLVM_BINUTILS_INCDIR=/usr/include \
> -DCMAKE_INSTALL_PREFIX=$PREFIX \
> -DLLVM_TARGETS_TO_BUILD="X86" \
> -DLLVM_ENABLE_BACKTRACES=OFF \
> -DLLVM_BUILD_EXAMPLES=OFF \
> -DLLVM_INCLUDE_EXAMPLES=OFF \
> -DLLVM_BUILD_TESTS=OFF \
> -DLLVM_INCLUDE_TESTS=OFF \
> -DLLVM_BUILD_DOCS=OFF \
> -DLLVM_INCLUDE_DOCS=OFF \
> -DLLVM_ENABLE_DOXYGEN=OFF \
> -DLLVM_ENABLE_SPHINX=OFF \
> -DLLDB_DISABLE_PYTHON=ON \
>...
2014 Apr 22
2
[LLVMdev] SCEV and induction variable identification
Hi Fellows,
The goal is to find the induction variable for a loop, where the
induction variable increments with the multiplication, division or shift
operations, like this one:
sz = 8;
do {
... ...
sz = sz / 2;
} while (sz)
Is SCEV capable of detecting the induction variable 'sz' in this case?
The code snippet I am using to solve the problem is
for each basic-block in a
2016 Sep 27
4
(Thin)LTO llvm build
On Tue, Sep 27, 2016 at 6:53 AM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
>
> > On Sep 27, 2016, at 2:18 AM, Carsten Mattner <carstenmattner at gmail.com>
> wrote:
> >
> >> On Mon, Sep 26, 2016 at 11:02 PM, Teresa Johnson <tejohnson at google.com>
> wrote:
> >> I'll either need to get a reproducer from you and/or try to repro
2018 Sep 21
2
can't build/run after adding lib to Fibonacci example, even reverting the complete llvm tree does not help
...ps://github.com/llvm-mirror/llvm, git checkout
release_70
tools
clang <-- git clone https://github.com/llvm-mirror/clang, git
checkout release_70
llvm_build
build steps:
cd llvm_build
cmake -Thost=x64 -G "Visual Studio 15 2017 Win64"
-DLLVM_TARGETS_TO_BUILD=host -DLLVM_BUILD_EXAMPLES=1
-DCLANG_BUILD_EXAMPLES=1 -DLLVM_INCLUDE_TESTS=OFF
-DLLVM_INCLUDE_DOCS=OFF ..\llvm
cmake --build . --config Debug
after building i open llvm-build\LLVM.sln in VS2017 ... loading 273 projects
question1: if left click on the solution root and select "build
solution" (to check if everyh...
2016 Dec 20
0
(Thin)LTO llvm build
> On Dec 20, 2016, at 5:49 AM, Carsten Mattner via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> Hi again, Teresa.
>
> Looks like I had forgotten to report back with success
> when finally building 3.9.0 in ThinLTO linker mode
> back in October. Sorry about that and thanks for
> helping me out. I know how important it is to get
> success reports as well, as a