Displaying 2 results from an estimated 2 matches for "vsdgtransit".
2009 Apr 07
4
[LLVMdev] Symbol not found in opt when using own pass
...e 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 found:
__ZN4vsdg14VSDGTransitionC1Ev
  Referenced from:
/Users/js231/s...
2009 Apr 07
0
[LLVMdev] Symbol not found in opt when using own pass
...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:
> 
> dyld: lazy symbol binding failed: Symbol not found:
> __ZN4vsdg14VS...