search for: python_init

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

2009 Jan 25
2
[LLVMdev] -O4 -fvisibility=hidden
...ld: symbol(s) not found These are all defined as extern as follows... extern "C" void FORTRAN(tcl_interp) (const long& canReturn, long& qterm, long& fd) extern "C" void FORTRAN(python_init)(const long& argc, char** argv) extern "C" void FORTRAN(xplorwrapproc_slave)(); The only symbols that become undefined are those extern symbols which calling fortran routines from c++ code. I'll look into creating a testcase and opening...
2009 Jan 25
0
[LLVMdev] -O4 -fvisibility=hidden
...all defined as extern as follows... > > extern "C" void > FORTRAN(tcl_interp) (const long& canReturn, > long& qterm, > long& fd) > > extern "C" void > FORTRAN(python_init)(const long& argc, > char** argv) > > extern "C" void FORTRAN(xplorwrapproc_slave)(); > defining them as extern is not enough to mark them as "exported". You should use the visibility attribute. extern "C" voi...
2009 Jan 25
2
[LLVMdev] -O4 -fvisibility=hidden
...> > > extern "C" void > > FORTRAN(tcl_interp) (const long& canReturn, > > long& qterm, > > long& fd) > > > > extern "C" void > > FORTRAN(python_init)(const long& argc, > > char** argv) > > > > extern "C" void FORTRAN(xplorwrapproc_slave)(); > > > > defining them as extern is not enough to mark them as "exported". > > You should use the visibil...