Displaying 2 results from an estimated 2 matches for "vsdgnode".
Did you mean:
sdnode
2009 Apr 07
4
[LLVMdev] Symbol not found in opt when using own pass
...ntly writing
my own pass which I am running by loading it into the opt tool. Everything I
had written in the pass so far had worked, until I started declaring an
#include of some extra header files which I had written myself (they are
objects for modeling a graph I am constructing):
#include "VSDGNode.h"
#include "VSDGPlace.h"
#include "VSDGTransition.h"
using namespace vsdg;
In my function for constructing my graph, I declare an object:
VSDGTransition t;
however, at run-time, the pass fails with the following error:
dyld: lazy symbol binding failed: Symbol not fo...
2009 Apr 07
0
[LLVMdev] Symbol not found in opt when using own pass
...er
rather than just
opt -load whatever
I have absolutely no idea what the problem actually is, since the
workaround works and I haven't felt the need to track anything down. I
usually have a make target and set OPT appropriately.
Hope this works for you,
Luke
>
> #include "VSDGNode.h"
> #include "VSDGPlace.h"
> #include "VSDGTransition.h"
> using namespace vsdg;
>
> In my function for constructing my graph, I declare an object:
>
> VSDGTransition t;
>
> however, at run-time, the pass fails with the following error:
>...