search for: fpga3

Displaying 3 results from an estimated 3 matches for "fpga3".

Did you mean: fpga
2008 Apr 21
1
[LLVMdev] newbie with pass registering Problem
...one Function Pass, which uses another Function Pass (blockNrs), and registered this: RegisterPass<FunctionAnalysis> X("gasched", "Genom Scheduling Pass"); When I compile my sourcecode, everything was okay. But when I tried to test it, i got this error Message: nicole at fpga3:~/test$ make opt -load /iss/fpga3/nicole/llvm-2.2/Debug/lib/LLVMblockNrs.so -load /iss/fpga3/nicole/llvm-2.2/Debug/lib/libgascheduling.so -help < opt.bc >/dev/null Two passes with the same argument (-gasched) attempted to be registered! /bin/sh: line 1: 15334 Abgebrochen opt -load...
2008 Apr 22
1
[LLVMdev] newbie with pass registering Problem
...one Function Pass, which uses another Function Pass (blockNrs), and registered this: RegisterPass<FunctionAnalysis> X("gasched", "Genom Scheduling Pass"); When I compile my sourcecode, everything was okay. But when I tried to test it, i got this error Message: nicole at fpga3:~/test$ make opt -load /iss/fpga3/nicole/llvm-2.2/Debug/lib/LLVMblockNrs.so -load /iss/fpga3/nicole/llvm-2.2/Debug/lib/libgascheduling.so -help < opt.bc >/dev/null Two passes with the same argument (-gasched) attempted to be registered! /bin/sh: line 1: 15334 Abgebrochen opt -load...
2008 Apr 22
2
[LLVMdev] The source code Makefile (newbie with pass registering Problem)
Hi!! It's me again. I guess that there is a problem in the Makefile of my source code. But I don't know where. Could you please verify it? The Makefile is written like this: # Makefile for Genetic Algorithm Pass CXXFLAGS = -Wall -I/iss/fpga3/nicole/galib247/ LDFLAGS= -L/iss/fpga3/nicole/galib247/ga/ -lga -Wl,-E # Path to top level of LLVM heirarchy LEVEL=../../../ # Name of the library to build LIBRARYNAME = gascheduling # Make the shared library become a loadable module so the tools can # dlopen/dlsym on the resulting library. # LO...