Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion trunk/source/BA_FeatureDependenciesCommon/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
label="BA_FeatureDependenciesCommon"
version="0.3.1"
provider-name="Ultimate Program Analysis Team"
arch="x86_64">
arch="aarch64,x86_64">

<plugin
id="com.google.gson"
Expand Down Expand Up @@ -71,6 +71,12 @@
os="linux"
version="0.0.0"/>

<plugin
id="org.eclipse.cdt.core.linux.aarch64"
os="linux"
arch="aarch64"
version="0.0.0"/>

<plugin
id="org.eclipse.cdt.core.linux.x86_64"
os="linux"
Expand Down Expand Up @@ -113,6 +119,12 @@
id="org.eclipse.core.filesystem"
version="0.0.0"/>

<plugin
id="org.eclipse.core.filesystem.linux.aarch64"
os="linux"
arch="aarch64"
version="0.0.0"/>

<plugin
id="org.eclipse.core.filesystem.linux.x86_64"
os="linux"
Expand Down
16 changes: 15 additions & 1 deletion trunk/source/BA_FeatureDependenciesDebugE4/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
label="BA_FeatureDependenciesDebugE4"
version="0.3.1"
provider-name="Ultimate Program Analysis Team"
arch="x86_64">
arch="aarch64,x86_64">

<requires>
<import feature="BA_FeatureDependenciesCommon"/>
Expand Down Expand Up @@ -224,13 +224,27 @@
id="org.eclipse.swt"
version="0.0.0"/>

<plugin
id="org.eclipse.swt.cocoa.macosx.aarch64"
os="macosx"
ws="cocoa"
arch="aarch64"
version="0.0.0"/>

<plugin
id="org.eclipse.swt.cocoa.macosx.x86_64"
os="macosx"
ws="cocoa"
arch="x86_64"
version="0.0.0"/>

<plugin
id="org.eclipse.swt.gtk.linux.aarch64"
os="linux"
ws="gtk"
arch="aarch64"
version="0.0.0"/>

<plugin
id="org.eclipse.swt.gtk.linux.x86_64"
os="linux"
Expand Down
2 changes: 1 addition & 1 deletion trunk/source/BA_FeatureUltimateCommandLine/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
label="BA_FeatureUltimateCommandLine"
version="0.3.1"
provider-name="Ultimate Program Analysis Team"
arch="x86_64">
arch="aarch64,x86_64">

<requires>
<import feature="BA_FeatureDependenciesCommon"/>
Expand Down
12 changes: 3 additions & 9 deletions trunk/source/BA_FeatureUltimateCommon/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,15 @@
version="0.3.1"
provider-name="Ultimate Program Analysis Team"
os="linux,win32,macosx"
arch="x86_64">
arch="aarch64,x86_64">

<requires>
<import feature="BA_FeatureDependenciesCommon"/>
</requires>

<plugin
id="de.uni_freiburg.informatik.ultimate.plugins.generator.icfgbuilder"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
version="0.0.0"/>

<plugin
id="de.uni_freiburg.informatik.ultimate.plugins.analysis.lassoranker"
Expand Down Expand Up @@ -184,10 +181,7 @@

<plugin
id="edu.uci.ics.jung"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
version="0.0.0"/>

<plugin
id="de.uni_freiburg.informatik.ultimate.plugins.blockencoding"
Expand Down
7 changes: 2 additions & 5 deletions trunk/source/BA_FeatureUltimateDebug/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version="0.3.1"
provider-name="Ultimate Program Analysis Team"
os="linux,win32,macosx"
arch="x86_64">
arch="aarch64,x86_64">

<requires>
<import feature="BA_FeatureDependenciesDebugE4"/>
Expand All @@ -31,9 +31,6 @@

<plugin
id="edu.uci.ics.jung"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
version="0.0.0"/>

</feature>
2 changes: 1 addition & 1 deletion trunk/source/BA_FeatureWebBackend/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
label="BA_FeatureWebBackend"
version="0.3.1"
provider-name="Ultimate Program Analysis Team"
arch="x86_64">
arch="aarch64,x86_64">

<requires>
<import feature="BA_FeatureDependenciesCommon" version="0.0.0"/>
Expand Down
10 changes: 10 additions & 0 deletions trunk/source/BA_MavenParentUltimate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,21 @@
<ws>win32</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>aarch64</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>aarch64</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
Expand Down