[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: is base compilable as a dll under win32
From: |
Helge Hess |
Subject: |
Re: is base compilable as a dll under win32 |
Date: |
Sat, 19 May 2001 10:40:15 +0200 |
Gerard Iglesias wrote:
> What is exactly the combination of teh shared flag when we compile libobjc,
> base and the test examples?
You should *always* use shared=yes on Windows even if only a single
piece is shared. Otherwise each DLL will have an own copy of any static
lib linked against it (including static variables !!!) and therefore you
are going to have a lot of trouble.
Particulary libobjc is very sensitive in the respect, always use a
shared one if you use any other ObjC DLL (either bundle or lib).
Greetings
Helge