News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

Help, need link library, libwxmsw26u.a

Started by arst, February 13, 2007, 06:20:01 PM

Previous topic - Next topic

arst

Hello,

I'm usually compiling against wxWidgets 2.8.0. Now I'm working
with testing a plugin under development and I need test against
wxW 2.6. And, for that I need the import library for wxmsw26u.dll

Could some kind person upload libwxmsw26u.a (maybe to savefile.com)?

If possible I'd prefer not installing wxw 2.6 and doing all the compiling.

Thanks,
Arst

Biplab

Be a part of the solution, not a part of the problem.

mandrav

Quote from: arst on February 13, 2007, 06:20:01 PM
Hello,

I'm usually compiling against wxWidgets 2.8.0. Now I'm working
with testing a plugin under development and I need test against
wxW 2.6. And, for that I need the import library for wxmsw26u.dll

You can link directly to the dll you already have, you don't need the import library.
Be patient!
This bug will be fixed soon...

Biplab

How can we do that? Give us some links.  :)

Thanks & Regards,

Biplab
Be a part of the solution, not a part of the problem.

dje

Hi !

On the linker part of the project Build options, you can add static libraries. To add dynamic libraries (dlls), just change the file filter to "all files" and select the dlls you want.

Is it possible to change extensions add the dll extension to the .a, .so... as it is possible to use them for link ?

Dje

arst

I've been testing linking directly to DLLs on a number of projects
now. Sometimes it works, sometimes I get a bunch of errors
from the linker.

I could not link the CodeBlocks app against codeblocks.dll and
wxmsw26u_gcc_cb.dll. Changing back to .a lib files it worked.

My plugin compiles and links fine with the wxwidgets DLL.

There's a good page on the subject here: http://linux.web.cern.ch/linux/scientific4/docs/rhel-ld-en-4/win32.html

OK
// Arst


dje

Thanks, very good article that explain very clearly the different ways to export dlls symbols !