tags:

views:

10

answers:

0

Hi all,

I am trying to create an Eclipse plug-in. I use libraries which are written in a different language(Scheme functional programming language), but imported as class file in eclipse. To use functionalities of scheme, a few initialization functions need to be invoked from eclipse.

All of this works fine when run as a simple Java project. But when we try running it in the Eclipse PDE environment it goes into an infinite loop in the initialization function. The initialization function in question is *bigloo_dlopen_init()*

The question is howcome a code which runs fine as a eclipse java project go into an infinite loop when run as eclipse PDE!!

related questions