Displaying 8 results from an estimated 8 matches for "wdanilo".
Did you mean:
danilo
2012 Nov 06
3
[LLVMdev] Error while linking LLVM files
...src/lunac.d" -o "src/test.o"
"../src/test.cpp"
(which compiles fine)
and:
Invoking: Cross G++ Linker
g++ `llvm-config --cppflags --ldflags --libs core` -o "test" ./src/test.o
which gives me error:
./src/test.o: In function `NumberExprAST::Codegen()':
/home/wdanilo/dev/lunac/Debug/../src/test.cpp:358: undefined reference to
`llvm::APFloat::APFloat(double)'
/home/wdanilo/dev/lunac/Debug/../src/test.cpp:358: undefined reference to
`llvm::getGlobalContext()'
/home/wdanilo/dev/lunac/Debug/../src/test.cpp:358: undefined reference to
`llvm::ConstantFP::get(...
2012 Nov 06
0
[LLVMdev] Error while linking LLVM files
...ot;../src/test.cpp"
> (which compiles fine)
>
> and:
>
> Invoking: Cross G++ Linker
> g++ `llvm-config --cppflags --ldflags --libs core` -o "test" ./src/test.o
>
> which gives me error:
> ./src/test.o: In function `NumberExprAST::Codegen()':
> /home/wdanilo/dev/lunac/Debug/../src/test.cpp:358: undefined reference to
> `llvm::APFloat::APFloat(double)'
> /home/wdanilo/dev/lunac/Debug/../src/test.cpp:358: undefined reference to
> `llvm::getGlobalContext()'
> /home/wdanilo/dev/lunac/Debug/../src/test.cpp:358: undefined reference to
>...
2012 Nov 08
2
[LLVMdev] llvm-config --libs failed
Thank you, now it is more clear whats going on. There is a line:
/bin/sh: /home/wdanilo/dev/llvm/src/projects/Debug+Asserts/bin/llvm-config:
No such file or directory
but why it is searching for it in that directory? (all makefile configs,
are default configs)
Below, there is full output of make:
>> make VERBOSE=1
for dir in lib tools; do \
if ([ ! -f $dir/Makefile ] || \...
2012 Nov 09
2
[LLVMdev] llvm-config --libs failed
...vmsrc/projects/test (as copy of sample project) and
> I get these errors while attaching LLVM lbraries :(
>
>
> 2012/11/8 Wojciech Daniło <wojtek.danilo.ml at gmail.com>
>
>> Thank you, now it is more clear whats going on. There is a line:
>> /bin/sh:
>> /home/wdanilo/dev/llvm/src/projects/Debug+Asserts/bin/llvm-config: No such
>> file or directory
>>
>> but why it is searching for it in that directory? (all makefile configs,
>> are default configs)
>> Below, there is full output of make:
>>
>> >> make VERBOSE=1
&g...
2012 Nov 09
0
[LLVMdev] llvm-config --libs failed
...may 2012)
I created project in llvmsrc/projects/test (as copy of sample project) and
I get these errors while attaching LLVM lbraries :(
2012/11/8 Wojciech Daniło <wojtek.danilo.ml at gmail.com>
> Thank you, now it is more clear whats going on. There is a line:
> /bin/sh:
> /home/wdanilo/dev/llvm/src/projects/Debug+Asserts/bin/llvm-config: No such
> file or directory
>
> but why it is searching for it in that directory? (all makefile configs,
> are default configs)
> Below, there is full output of make:
>
> >> make VERBOSE=1
> for dir in lib tools; do...
2012 Nov 10
0
[LLVMdev] llvm-config --libs failed
...sample project)
>> and I get these errors while attaching LLVM lbraries :(
>>
>>
>> 2012/11/8 Wojciech Daniło <wojtek.danilo.ml at gmail.com>
>>
>>> Thank you, now it is more clear whats going on. There is a line:
>>> /bin/sh:
>>> /home/wdanilo/dev/llvm/src/projects/Debug+Asserts/bin/llvm-config: No such
>>> file or directory
>>>
>>> but why it is searching for it in that directory? (all makefile configs,
>>> are default configs)
>>> Below, there is full output of make:
>>>
>>>...
2012 Nov 08
0
[LLVMdev] llvm-config --libs failed
Wojciech Daniło <wojtek.danilo.ml at gmail.com> writes:
> Hi!
> I'm trying to use the LLVMProject toolchain (according to this page:
> http://llvm.org/docs/Projects.html).
> I created a project "test" with kaleidoscope example source code from:
> http://llvm.org/docs/tutorial/LangImpl3.html
> It compiles successfully with: clang++ -g -O3 toy.cpp `llvm-config
2012 Nov 08
2
[LLVMdev] llvm-config --libs failed
Hi!
I'm trying to use the LLVMProject toolchain (according to this page:
http://llvm.org/docs/Projects.html).
I created a project "test" with kaleidoscope example source code from:
http://llvm.org/docs/tutorial/LangImpl3.html
It compiles successfully with: clang++ -g -O3 toy.cpp `llvm-config
--cppflags --ldflags --libs core` -o toy
according to the project documentation, my Makefile