in reply to Bloomberg API installation
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Bloomberg API installation
by jc_perlfan (Initiate) on Oct 30, 2015 at 14:22 UTC | |
Thanks for your answer, I try with other MinGW version and most of the errors become fixed, but now there appears a lot of undefined references when calling bloomberg_api_internal_wrap.o:bloomberg_api_internal_wrap.c,as follows: Any ideas to fix it? Your help is greatly appreciated, JCM | [reply] [d/l] |
by syphilis (Archbishop) on Oct 31, 2015 at 00:09 UTC | |
Note (probably harmless): No library found for -lblpapi3_32 libblpapi3_32.a is being sought (presumably for the purpose of resolving those references) but can't be found. If you don't have that file you can create it from the Bloomberg dll - using gendef and dlltool as detailed here. dlltool should have come with your compiler. If gendef is not also provided, you might have to google for it. Then it's just a matter of placing your libblpapi3_32.a where it is automatically located. Or you can set the CPATH environment variable to point to its location - something like: You'll then need to perform a fresh build. Cheers, Rob Update: spelling out the gendef and dlltool commands (assuming the Bloomberg dll is called bl.dll - which may or may not be the case):
| [reply] [d/l] [select] |