mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-21 21:52:10 +02:00
Bug 565836: Add aarch64 for standalone debugger
Change-Id: I3cbbbf98778870ad2be30318a44575adf0308f2e
This commit is contained in:
parent
5249144c8c
commit
c378a6747a
3 changed files with 12 additions and 2 deletions
|
@ -7,5 +7,5 @@ by simply running: ./cdtdebug -e ~/myproject/bin/a.out arg1 arg2
|
|||
You can find more information about command-line options in
|
||||
org.eclipse.cdt.debug.application/scripts/README.
|
||||
|
||||
Note that this product is currently only built for the more popular architecture x86 and x86_64 on
|
||||
Linux, Windows and Mac.
|
||||
Note that this product is currently only built for the more popular architecture x86_64 on
|
||||
Linux, Windows and Mac and aarch64 on Linux.
|
||||
|
|
|
@ -205,6 +205,7 @@ Java and all Java-based trademarks are trademarks of Oracle Corporation in the U
|
|||
<plugin id="org.eclipse.cdt.core"/>
|
||||
<plugin id="org.eclipse.cdt.core.linux" fragment="true"/>
|
||||
<plugin id="org.eclipse.cdt.core.linux.x86_64" fragment="true"/>
|
||||
<plugin id="org.eclipse.cdt.core.linux.aarch64" fragment="true"/>
|
||||
<plugin id="org.eclipse.cdt.core.macosx" fragment="true"/>
|
||||
<plugin id="org.eclipse.cdt.core.native"/>
|
||||
<plugin id="org.eclipse.cdt.core.win32" fragment="true"/>
|
||||
|
@ -242,11 +243,13 @@ Java and all Java-based trademarks are trademarks of Oracle Corporation in the U
|
|||
<plugin id="org.eclipse.core.filebuffers"/>
|
||||
<plugin id="org.eclipse.core.filesystem"/>
|
||||
<plugin id="org.eclipse.core.filesystem.linux.x86_64" fragment="true"/>
|
||||
<plugin id="org.eclipse.core.filesystem.linux.aarch64" fragment="true"/>
|
||||
<plugin id="org.eclipse.core.filesystem.macosx" fragment="true"/>
|
||||
<plugin id="org.eclipse.core.filesystem.win32.x86_64" fragment="true"/>
|
||||
<plugin id="org.eclipse.core.jobs"/>
|
||||
<plugin id="org.eclipse.core.net"/>
|
||||
<plugin id="org.eclipse.core.net.linux.x86_64" fragment="true"/>
|
||||
<!-- Does not exist, see Bug 566638: plugin id="org.eclipse.core.net.linux.aarch64" fragment="true"/ -->
|
||||
<plugin id="org.eclipse.core.net.win32.x86_64" fragment="true"/>
|
||||
<plugin id="org.eclipse.core.resources"/>
|
||||
<plugin id="org.eclipse.core.runtime"/>
|
||||
|
@ -303,6 +306,7 @@ Java and all Java-based trademarks are trademarks of Oracle Corporation in the U
|
|||
<plugin id="org.eclipse.equinox.launcher"/>
|
||||
<plugin id="org.eclipse.equinox.launcher.cocoa.macosx.x86_64" fragment="true"/>
|
||||
<plugin id="org.eclipse.equinox.launcher.gtk.linux.x86_64" fragment="true"/>
|
||||
<plugin id="org.eclipse.equinox.launcher.gtk.linux.aarch64" fragment="true"/>
|
||||
<plugin id="org.eclipse.equinox.launcher.win32.win32.x86_64" fragment="true"/>
|
||||
<plugin id="org.eclipse.equinox.p2.artifact.repository"/>
|
||||
<plugin id="org.eclipse.equinox.p2.core"/>
|
||||
|
@ -352,6 +356,7 @@ Java and all Java-based trademarks are trademarks of Oracle Corporation in the U
|
|||
<plugin id="org.eclipse.swt"/>
|
||||
<plugin id="org.eclipse.swt.cocoa.macosx.x86_64" fragment="true"/>
|
||||
<plugin id="org.eclipse.swt.gtk.linux.x86_64" fragment="true"/>
|
||||
<plugin id="org.eclipse.swt.gtk.linux.aarch64" fragment="true"/>
|
||||
<plugin id="org.eclipse.swt.win32.win32.x86_64" fragment="true"/>
|
||||
<plugin id="org.eclipse.team.core"/>
|
||||
<plugin id="org.eclipse.team.ui"/>
|
||||
|
|
|
@ -72,6 +72,11 @@
|
|||
<ws>gtk</ws>
|
||||
<arch>x86_64</arch>
|
||||
</environment>
|
||||
<environment>
|
||||
<os>linux</os>
|
||||
<ws>gtk</ws>
|
||||
<arch>aarch64</arch>
|
||||
</environment>
|
||||
<environment>
|
||||
<os>win32</os>
|
||||
<ws>win32</ws>
|
||||
|
|
Loading…
Add table
Reference in a new issue