Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] m2eclipse and tycho 1.14.1 and mac workaround

btw. I just checked and the only workaround we got in effect still is:

<profile>
                        <id>osx</id>
                        <activation>
                                <property>
                                        <name>java.vendor.url</name>
                                        <value>http://www.apple.com/</value>
                                </property>
                        </activation>
                        <properties>
                                <!-- THE FOLLOWING LINE MUST NOT BE BROKEN BY AUTOFORMATTING -->
                                <systemProperties combine.children="append"> -d32 -Dosgi.arch=x86 -XstartOnFirstThread </systemProperties>
                        </properties>
                </profile>

which forces 32bit execution on osx + sets the osgi.arch=x86 so our java 32bit requirement is honored. Otherwise I believe we get 
system resultion problems but dont think that is something you need to workaround in drools is it ?

Looks like your "workaround" is similar but just at a different (and IMO wrong level that ties to specific versions of launchers).

/max

On Apr 17, 2012, at 17:25 , Max Rydahl Andersen wrote:

> Geoffrey - we never needed that elsewhere in jbosstools - so yeah, as Igor asks, what bug are you working around ?
> 
> /max
> 
> On Apr 17, 2012, at 10:51 , Geoffrey De Smet wrote:
> 
>> In our development setup, we have this for tycho 0.11.0:
>> 
>> * Only on Mac, also add these lines to avoid a Mac-specific p2 bug with tycho 0.11.0 in droolsjbpm-tools:
>> 
>>       -startup
>>       ../../../plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
>>       --launcher.library
>>       ../../../plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1.R36x_v20100810
>> 
>> 
>> Is this workaround still needed, now that we've upgraded to tycho 1.14.1?
>> 
>> -- 
>> With kind regards,
>> Geoffrey De Smet
>> 
>> 
>> _______________________________________________
>> tycho-user mailing list
>> tycho-user@xxxxxxxxxxx
>> https://dev.eclipse.org/mailman/listinfo/tycho-user
> 
> _______________________________________________
> tycho-user mailing list
> tycho-user@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/tycho-user



Back to the top