Skip to content

Commit 2498ac7

Browse files
committed
Add build for Linux.riscv64 platform
with fixes for various errors when importing the project into the Eclipse RCP IDE environment.
1 parent 9f5c3d8 commit 2498ac7

File tree

43 files changed

+532
-611
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+532
-611
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# DBeaver for Linux riscv64, Windows on Arm64
2+
3+
DBeaver now natively supports the `Windows on Arm64` platform, in upstream repo.
4+
5+
This fork adds the WMI Native driver (jkiss_wmi.dll), compiled natively for Windows on Arm64, which is missing upstream.
6+
7+
It also adds support to produce build artifacts for `Linux riscv64` platform.
8+
9+
Original [README.md](https://github.com/dbeaver/dbeaver#readme) text is as followed.
10+
11+
----
12+
113
[![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/dbeaver_news.svg?style=social&label=Follow%20%40dbeaver_news)](https://twitter.com/dbeaver_news)
214
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/fa0bb9cf5a904c7d87424f8f6351ba92)](https://app.codacy.com/gh/dbeaver/dbeaver/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
315
[![Apache 2.0](https://img.shields.io/github/license/cronn-de/jira-sync.svg)](http://www.apache.org/licenses/LICENSE-2.0)

features/org.jkiss.dbeaver.app.base.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>DBeaver Universal Database Manager base standalone application</description>
1111

1212
<copyright>DBeaver Corp and others</copyright>
13-
<license url="https://dbeaver.io/product/dbeaver_license.txt"/>
13+
<license url="https://dbeaver.io/product/dbeaver_license.txt">Apache License Version 2.0</license>
1414

1515
<includes id="org.jkiss.dbeaver.rcp.feature" version="0.0.0"/>
1616

features/org.jkiss.dbeaver.app.local.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
provider-name="DBeaver Corp">
88

99
<copyright>DBeaver Corp and others</copyright>
10-
<license url="https://dbeaver.io/product/dbeaver_license.txt"/>
10+
<license url="https://dbeaver.io/product/dbeaver_license.txt">Apache License Version 2.0</license>
1111

1212
<!-- Quick search. Includes minimized ant bundle. No included in non-local as it uses local FS. -->
1313
<plugin id="org.eclipse.text.quicksearch" version="0.0.0"/>

features/org.jkiss.dbeaver.appstore.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<description>DBeaver Universal Database Manager standalone application</description>
1010

1111
<copyright>DBeaver Corp and others</copyright>
12-
<license url="https://dbeaver.io/product/dbeaver_license.txt"/>
12+
<license url="https://dbeaver.io/product/dbeaver_license.txt">Apache License Version 2.0</license>
1313

1414
<includes id="org.jkiss.dbeaver.app.base.feature" version="0.0.0"/>
1515
<includes id="org.jkiss.dbeaver.app.local.feature" version="0.0.0"/>

features/org.jkiss.dbeaver.ce.feature/build.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ bin.includes = feature.xml
22
root = ../../docs/root,target/generated
33
root.linux.gtk.aarch64 = file:../../product/community/icons/dbeaver.png
44
root.linux.gtk.x86_64 = file:../../product/community/icons/dbeaver.png
5+
root.linux.gtk.riscv64 = file:../../product/community/icons/dbeaver.png
56
#root.macosx.cocoa.x86_64 = target/generated-macos

features/org.jkiss.dbeaver.ce.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<description>DBeaver - Universal Database Manager</description>
1010

1111
<copyright>DBeaver Corp and others</copyright>
12-
<license url="https://dbeaver.io/product/dbeaver_license.txt"/>
12+
<license url="https://dbeaver.io/product/dbeaver_license.txt">Apache License Version 2.0</license>
1313

1414
<includes id="org.jkiss.dbeaver.standalone.feature" version="0.0.0"/>
1515
<includes id="org.jkiss.dbeaver.app.local.feature" version="0.0.0"/>

features/org.jkiss.dbeaver.db.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
provider-name="DBeaver Corp">
77

88
<copyright>DBeaver Corp and others</copyright>
9-
<license url="https://dbeaver.io/product/dbeaver_license.txt"/>
9+
<license url="https://dbeaver.io/product/dbeaver_license.txt">Apache License Version 2.0</license>
1010

1111
<plugin id="org.jkiss.dbeaver.ext.db2" version="0.0.0"/>
1212
<plugin id="org.jkiss.dbeaver.ext.mysql" version="0.0.0" />

features/org.jkiss.dbeaver.db.ui.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
provider-name="DBeaver Corp">
77

88
<copyright>DBeaver Corp and others</copyright>
9-
<license url="https://dbeaver.io/product/dbeaver_license.txt"/>
9+
<license url="https://dbeaver.io/product/dbeaver_license.txt">Apache License Version 2.0</license>
1010

1111
<includes id="org.jkiss.dbeaver.db.feature" version="0.0.0"/>
1212

features/org.jkiss.dbeaver.debug.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
provider-name="DBeaver Corp">
77

88
<copyright>DBeaver Corp and others</copyright>
9-
<license url="https://dbeaver.io/product/dbeaver_license.txt"/>
9+
<license url="https://dbeaver.io/product/dbeaver_license.txt">Apache License Version 2.0</license>
1010

1111
<requires>
1212
<import feature="org.jkiss.dbeaver.ui.feature" version="7.0.0" match="greaterOrEqual"/>

features/org.jkiss.dbeaver.ext.office.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
plugin="org.jkiss.dbeaver.data.office">
88

99
<copyright>DBeaver Corp and others</copyright>
10-
<license url="https://dbeaver.io/product/dbeaver_license.txt"/>
10+
<license url="https://dbeaver.io/product/dbeaver_license.txt">Apache License Version 2.0</license>
1111

1212
<requires>
1313
<import feature="org.jkiss.dbeaver.ui.feature" version="7.0.0" match="greaterOrEqual"/>

0 commit comments

Comments
 (0)