search for: saragga

Displaying 9 results from an estimated 9 matches for "saragga".

Did you mean: baranga
2010 Oct 09
2
[LLVMdev] LLVM ERROR: Program used external function 'printd' which could not be resolved!
2010/10/9 António Saragga Seabra <antseabra at gmail.com>: > I'm on Windows using MinGW... > > 2010/10/9 OvermindDL1 <overminddl1 at gmail.com> >> >> 2010/10/5 António Saragga Seabra <antseabra at gmail.com>: >> > Hi >> > >> > Thank you for your help! Fol...
2010 Oct 09
0
[LLVMdev] LLVM ERROR: Program used external function 'printd' which could not be resolved!
...unction pointer. But how to do it for the 'printd' function in the Kaleidoscope example? An example how to do this would be super-great. Any help will be much appreciated. Thanks! On Sat, Oct 9, 2010 at 3:55 PM, OvermindDL1 <overminddl1 at gmail.com> wrote: > 2010/10/9 António Saragga Seabra <antseabra at gmail.com>: > > I'm on Windows using MinGW... > > > > 2010/10/9 OvermindDL1 <overminddl1 at gmail.com> > >> > >> 2010/10/5 António Saragga Seabra <antseabra at gmail.com>: > >> > Hi > >> > > &...
2010 Sep 07
2
[LLVMdev] llvm-config error
...:(.text+0x8d): undefined reference to `GetProcessMemoryInfo at 12' collect2: ld returned 1 exit status I built again LLVM now with perl working properly. Any help would be great Antonio 2010/9/7 NAKAMURA Takumi <geek4civic at gmail.com> > Hello, António. > > 2010/9/7 António Saragga Seabra <antseabra at gmail.com>: > > > I’m having a few problems building the kaleidoscope example (chapter 3) > > under MinGW. To build the example I use as recommended > > > g++ -g -O3 toy.cpp `llvm-config --cppflags --ldflags --libs core` -o toy > > sh: llvm-c...
2010 Sep 07
0
[LLVMdev] llvm-config error
Good afternoon, António. 2010/9/7 António Saragga Seabra <antseabra at gmail.com>: > $g++ -g –O3 toy.cpp `llvm-config –cppflags –ldflags –libs core`-o toy > > c:/llvm-2.7/Release/lib/libLLVMSystem.a(Signals.o):Signals.cpp:(.text+0x4d4): > undefined reference to `_imp__SymSetOptions at 4' I guess it might be a known issue; ht...
2010 Sep 07
0
[LLVMdev] llvm-config error
Hello, António. 2010/9/7 António Saragga Seabra <antseabra at gmail.com>: > I’m having a few problems building the kaleidoscope example (chapter 3) > under MinGW. To build the example I use as recommended > g++ -g -O3 toy.cpp `llvm-config --cppflags --ldflags --libs core` -o toy > sh: llvm-config: command not found Yo...
2010 Sep 07
2
[LLVMdev] llvm-config error
Hi I’m having a few problems building the kaleidoscope example (chapter 3) under MinGW. To build the example I use as recommended g++ -g -O3 toy.cpp `llvm-config --cppflags --ldflags --libs core` -o toy but get the following error sh: llvm-config: command not found Indeed in my “\llvm-2.7\tools\llvm-config\” build directory there is no “Release” subdirectory as I would expect (only
2010 Sep 06
1
[LLVMdev] DataTypes.h Header File
Hi This is a beginner's question. I’m trying to compile Kaleidoscope Ch3 example under MinGW. As I understand most errors result from header file DataTypes.h be missing. I was unable to find DataTypes.h header file in llvm/System folder. Instead, the folder contain DataTypes.h.in and DataTypes.h.cmake files. Shall I use them to create DataTypes.h header file? Any help would be much
2011 Feb 13
1
[LLVMdev] conversion from 'const llvm::Value*' to 'llvm::Constant*'
Hi Duncan and Reid, Thanks for your comments and suggestions. I was puzzled because assigning to a local variable in the tutorial example works. For example: var a = cos(1) in ( 2 * a ); emits declare double @cos(double) define double @0() { entry: ret double 0x3FF14A280FB5068C } and we get the right answer 1.08060461. On Sun, Feb 13, 2011 at 5:09 PM, Duncan Sands <baldrick at
2010 Oct 02
4
[LLVMdev] LLVM ERROR: Program used external function 'printd' which could not be resolved!
Hi Buit the Kaleidoscope example under MinGW and everything runs fine except when I try the following example in Chapter 6: extern printd(x); printd(123); where printd is the library function defined in C as extern "C" double printd(double X) { printf("%f\n", X); return 0; } The error message is: LLVM ERROR: Program used external function