Displaying 9 results from an estimated 9 matches for "linkallasmwritercomponents".
2009 Apr 07
2
[LLVMdev] Link error building llc
...l)'
/home/neale/LLVM/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h:49:
undefined reference to
`llvm::createDefaultScheduler(llvm::SelectionDAGISel*, bool)'
/home/neale/LLVM/llvm/tools/llc/Debug/llc.o: In function
`ForceAsmWriterLinking':
/home/neale/LLVM/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h:30:
undefined reference to `llvm::linkOcamlGCPrinter()'
collect2: ld returned 1 exit status
make[2]: *** [/home/neale/LLVM/llvm/Debug/bin/llc] Error 1
These entry points are in modules that have been compiled and placed into an
archive. (e.g. llvm::createBURRListDAGScheduler is in ScheduleDA...
2012 Feb 20
1
[LLVMdev] ARM opcode format
...--------===//
#include <iostream>
#include "llvm/LLVMContext.h"
#include "llvm/Module.h"
#include "llvm/PassManager.h"
#include "llvm/Pass.h"
#include "llvm/ADT/Triple.h"
#include "llvm/Support/IRReader.h"
#include "llvm/CodeGen/LinkAllAsmWriterComponents.h"
#include "llvm/CodeGen/LinkAllCodegenComponents.h"
#include "llvm/Config/config.h"
#include "llvm/MC/SubtargetFeature.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/FormattedStream.h"...
2009 Apr 07
0
[LLVMdev] Link error building llc
Hello, Neale
> These entry points are in modules that have been compiled and placed into an
> archive. (e.g. llvm::createBURRListDAGScheduler is in ScheduleDAGRRList.cpp
> whose object is placed in ./Debug/lib/libLLVMSelectionDAG.a).
>
> I'm sure I've missed a configuration option or something trivial like that
> but my newbie brain can't determine what it is.
make
2009 Apr 09
2
[LLVMdev] Link error building llc
...l)'
/home/neale/LLVM/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h:49:
undefined reference to
`llvm::createDefaultScheduler(llvm::SelectionDAGISel*, bool)'
/home/neale/LLVM/llvm/tools/llc/Debug/llc.o: In function
`ForceAsmWriterLinking':
/home/neale/LLVM/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h:30:
undefined reference to `llvm::linkOcamlGCPrinter()'
collect2: ld returned 1 exit status
So it appears to be missing LLVMSelectionDAG in the link specification. I've
been trying to wade through the Makefile* files to see how the link
specification is generated but am not getting anywh...
2012 Feb 20
0
[LLVMdev] ARM opcode format
Guillermo,
> I'm sorry I forgot to mention I am compiling the bitcode using the JIT. The
> actual error, I get when I'm trying to get the function to the pointer. I'm
> using a custom front end that translates Android's Dalvik bytecode into LLVM
> bitcode based on Android ICS's modified LLVM version.
ARM JIT is broken in many ways. So, what you're seeing is
2012 Feb 20
3
[LLVMdev] ARM opcode format
Hi,
I'm sorry I forgot to mention I am compiling the bitcode using the JIT. The
actual error, I get when I'm trying to get the function to the pointer. I'm
using a custom front end that translates Android's Dalvik bytecode into
LLVM bitcode based on Android ICS's modified LLVM version.
Thanks,
On Mon, Feb 20, 2012 at 7:55 PM, James Molloy <James.Molloy at arm.com>
2010 Oct 01
2
[LLVMdev] CMake "sudo make install" & headers
...en/ISDOpcodes.h
-- Installing: /usr/local/llvm-2.8/include/llvm/CodeGen/IntrinsicLowering.h
-- Installing: /usr/local/llvm-2.8/include/llvm/CodeGen/JITCodeEmitter.h
-- Installing: /usr/local/llvm-2.8/include/llvm/CodeGen/LatencyPriorityQueue.h
-- Installing: /usr/local/llvm-2.8/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
-- Installing: /usr/local/llvm-2.8/include/llvm/CodeGen/LinkAllCodegenComponents.h
-- Installing: /usr/local/llvm-2.8/include/llvm/CodeGen/LiveInterval.h
-- Installing: /usr/local/llvm-2.8/include/llvm/CodeGen/LiveIntervalAnalysis.h
-- Installing: /usr/local/llvm-2.8/include/llvm/CodeGen/LiveStac...
2010 Oct 01
0
[LLVMdev] CMake "sudo make install" & headers
On Thu, Sep 30, 2010 at 3:08 PM, Samuel Williams
<space.ship.traveller at gmail.com> wrote:
> Hi,
>
> I might just be doing something stupid, but when I do
>
> $ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/llvm-2.8 -DCMAKE_BUILD_TYPE=Release ..
> $ sudo make install
>
> I don't get the expected headers in
> /usr/local/llvm-2.8/include/llvm
>
> It is
2010 Sep 30
6
[LLVMdev] CMake "sudo make install" & headers
Hi,
I might just be doing something stupid, but when I do
$ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/llvm-2.8 -DCMAKE_BUILD_TYPE=Release ..
$ sudo make install
I don't get the expected headers in
/usr/local/llvm-2.8/include/llvm
It is simply an empty directory.
What am I doing wrong? This is on Mac OS X, CMake 2.8+
Kind regards,
Samuel