Displaying 1 result from an estimated 1 matches for "_nothing_works_here".
2008 Jan 23
1
[LLVMdev] compiling release_22 witout bison installed gives broken build
Hi. I had a strange issue today. basically llvm-as refused to do
anything, borking out on the simplest of module:
; ModuleID = 'test'
@_nothing_works_here = constant i32 42
$ llvm-as test.ll
llvm-as: test.ll:1,0: test.ll:1: error: parse error, expecting
`GLOBAL' or `CONSTANT' while reading token: '@_nothing_works_here'
It turns out that I forgot to install bison before compiling llvm, but
configure did not complain about this. Afte...