Displaying 5 results from an estimated 5 matches for "sliceme2".
Did you mean:
slice_2
2006 Dec 02
3
[LLVMdev] invalid bytecode signature
I am trying to disassemble some bytecode using llvm-dis:
llvm-dis -f -o llvmtest/sliceme2.cbc.ll llvmtest/sliceme2.cbc
However, I am getting the following error.
llvm-dis: Invalid bytecode signature: 464C457F (Vers=0, Pos=4)
How do I go about figuring out what the problem is?
llvmtest/sliceme2.cbc is newly compiled using the same version of
llvm-gcc as llvm-dis.
--
Ryan M. Lefeve...
2006 Dec 02
0
[LLVMdev] invalid bytecode signature
Hi Ryan,
On Fri, 2006-12-01 at 18:06 -0600, Ryan M. Lefever wrote:
> I am trying to disassemble some bytecode using llvm-dis:
> llvm-dis -f -o llvmtest/sliceme2.cbc.ll llvmtest/sliceme2.cbc
>
> However, I am getting the following error.
>
> llvm-dis: Invalid bytecode signature: 464C457F (Vers=0, Pos=4)
The problem is most likely that sliceme2.cbc is *not* bytecode. Open the
file and see. This message is checking for llvm or llvc (bytecode
si...
2006 Dec 01
1
[LLVMdev] Disable Inlining
I ran the following command:
llvm-gcc -Iinclude -Illvmtest -Wa,-disable-inlining
-Wl,-disable-inlining -c -o llvmtest/sliceme2.bc llvmtest/sliceme2.c
And it responded with the following:
as: unrecognized option `-disable-inlining'
Does -disable-inlining not work anymore?
Thanks,
Ryan
2006 Dec 02
1
[LLVMdev] invalid bytecode signature
...changed?
Thanks,
Ryan
Ryan M. Lefever [http://www.ews.uiuc.edu/~lefever]
On Fri, 1 Dec 2006, Reid Spencer wrote:
> Hi Ryan,
>
> On Fri, 2006-12-01 at 18:06 -0600, Ryan M. Lefever wrote:
>> I am trying to disassemble some bytecode using llvm-dis:
>> llvm-dis -f -o llvmtest/sliceme2.cbc.ll llvmtest/sliceme2.cbc
>>
>> However, I am getting the following error.
>>
>> llvm-dis: Invalid bytecode signature: 464C457F (Vers=0, Pos=4)
>
> The problem is most likely that sliceme2.cbc is *not* bytecode. Open the
> file and see. This message is checking f...
2006 Dec 01
1
[LLVMdev] crtend
Before upgrading to the latest LLVM today, I used to run the following
command:
llvm-gcc -fno-inline -o __tmp.homer___ llvmtest/sliceme2.bc
-L/home/testbed1/lefever/work/llvm/install/lib -lcrtend
However, it is given the following error.
/usr/bin/ld: cannot find -lcrtend
collect2: ld returned 1 exit status
make: *** [llvmtest/sliceme2.cbc] Error 1
Has the crtend library been moved?
Thanks,
Ryan