On 21.06.2011 12:22, Elvy wrote: > > I'm on Windows Vista (which is 64 bits) and after switching from JVM 32bits
AFAIK there are also 32bit variants of Vista and Win7.. > to JVM 64bits I had to use the following on my maven-bundle-plugin for my > app to properly load on Felix 3.0.8 > > __________________ > <Bundle-NativeCode> > win32/foo32.dll;osname=win32;processor=x86, > win64/foo64.dll;osname=win32;processor=x86-64, > linux/foo32.so;osname=linux;processor=x86, > linux64/foo64.so;osname=linux64;processor=x86-64 > </Bundle-NativeCode> > __________________ > > > Look at the win64 declaration. Isn't it bizarre for the osname to be set as > win32 instead of win64? > > Is this a bug or am I getting this wrong? The 4.2 spec had no explicit WindowsVista/7-64bit constants, so you can use the "win32" alias for "Windows whatever" and let the matching suceed via the processor attribute. 4.3 has new osname entries for Win7 etc. -h --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

