Displaying 2 results from an estimated 2 matches for "vsdgconstruct".
2009 Apr 07
4
[LLVMdev] Symbol not found in opt when using own pass
...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/svn-check/js231/code/llvm-2.5/Release/lib/VSDGConstruct.0.0.0.dylib
Expected in: flat namespace
dyld: Symbol not found: __ZN4vsdg14VSDGTransitionC1Ev
Referenced from:
/Users/js231/svn-check/js231/code/llvm-2.5/Release/lib/VSDGConstruct.0.0.0.dylib
Expected in: flat namespace
// Memory dump omitted...
Segmentation fault
Which seems to suggest t...
2009 Apr 07
0
[LLVMdev] Symbol not found in opt when using own pass
...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/svn-check/js231/code/llvm-2.5/Release/lib/VSDGConstruct.0.0.0.dylib
> Expected in: flat namespace
>
> dyld: Symbol not found: __ZN4vsdg14VSDGTransitionC1Ev
> Referenced from:
> /Users/js231/svn-check/js231/code/llvm-2.5/Release/lib/VSDGConstruct.0.0.0.dylib
> Expected in: flat namespace
>
> // Memory dump omitted...
>...