Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Support for 64-bit ARM Builds

Hi,

We do have Mac M1 processor builds available from this release. In M1 we used arm64 as processor string. This has been changed to aarch64 from M2 onwards to make it consistent with JDK and linux

Thanks and Regards,
Sravan

Sravan Kumar Lakkimsetti
IBM India Pvt Ltd,
Embassy Golf Links Business Park, C Block,
Off Indiranagar-Kormangla Inner Ring Road,
Bangalore - 560071, India

-----Original Message-----
From: Christoph Läubrich <laeubi@xxxxxxxxxxxxxx>
Sent: 15 May 2021 17:21
To: tycho-user@xxxxxxxxxxx
Subject: [EXTERNAL] Re: [tycho-user] Support for 64-bit ARM Builds

If you are only like to use SWT, it seems there is an early access version available with

<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>arm64</arch>
</environment>

but you would need to build a product without a native launcher then...


Am 15.05.21 um 13:48 schrieb Christoph Läubrich:
> In general there are two aspects where the environment comes into play:
>
> - you are building a product that includes native launcher, you
> require a SDK that includes proper launcher artifacts in your target
> platform
> - you are building a bundle/feature/product that references platform
> specific artifacts (e.g. SWT)
>
> If I take a look at [1] (Platform Runtime Binary/SWT Binary and
> Source) it seems for me that AArch64 is only available for *linux* and
> not specifically for *macosx* so
>
> <environment>
> <os>linux</os>
> <ws>gtk</ws>
> <arch>aarch64</arch>
> </environment>
>
> would be your only choice at the moment (don't know if that is
> compatible with new 64-bit ARM (M1) Macs).
>
> [1]
> https://download.eclipse.org/eclipse/downloads/drops4/S-4.20M1-2021040
> 71800/
>
>
>
> Am 15.05.21 um 12:36 schrieb David Hofmann:
>> Hi all,
>>
>> first of all, thanks for the development of Tycho! It reliably builds
>> my Eclipse products for many years now.
>>
>> A user reported that it is not possible to start the product on the
>> new 64-bit ARM (M1) Macs, so I tried to build a corresponding variant.
>> I added a new environment entry in the target-platform-configuration
>> plugin like this:
>>
>> <environment>
>> <os>macosx</os>
>> <ws>cocoa</ws>
>> <arch>aarch64</arch>
>> </environment>
>>
>> I played around with the architecture identifiers, e.g. arm64, arm_64
>> but none of those work. Am I using the wrong identifier or is this
>> not supported yet? If the latter is the case, can I do anything to
>> help apart from opening a feature request? From what I gathered so
>> far from the forums/bug reports the problem is not the runtime itself
>> but rather that ARM-specific SWT libraries are required, is this correct?
>>
>> Thanks and best regards
>> Dave
>>
>> _______________________________________________
>> tycho-user mailing list
>> tycho-user@xxxxxxxxxxx
>> To unsubscribe from this list, visit
>> https://www.eclipse.org/mailman/listinfo/tycho-user
>>
> _______________________________________________
> tycho-user mailing list
> tycho-user@xxxxxxxxxxx
> To unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/tycho-user
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/tycho-user


Back to the top