Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
6d4e37b
chore: remove orphaned third-party.bake.Dockerfile
pplupo Jun 30, 2026
06595cc
feat: Add database support for DuckDB, SQLite, MDB
pplupo Jun 29, 2026
81f906f
Add parquet format support
pplupo Jun 29, 2026
4bee03f
Fix empty db files not being recognized, add MDB tools
pplupo Jun 29, 2026
e8715b1
Fix duckdb to support parquet via view
pplupo Jun 29, 2026
6871a9c
Fix include path for mdbtools
pplupo Jun 29, 2026
6a42781
Define TLS macro in mdbtools.h
pplupo Jun 30, 2026
e991c8a
fix: remove system libmdb linkage; use vendored libmdb sources instead
pplupo Jun 30, 2026
47bd51a
fix: define HAVE_ICONV for BinDocument to fix iconv.c build error
pplupo Jun 30, 2026
0b61ca5
fix: add ICONV_CONST and mdbtools.h shim for libmdb iconv build
pplupo Jun 30, 2026
4495c0f
fix: vendor libmdb sources from upstream mdbtools v1.0.1
pplupo Jul 8, 2026
ace9de4
fix: pull DuckDB from vcpkg, link mdbtools as a shared library
pplupo Jul 8, 2026
20401a7
chore: vendor mdbtools COPYING.LIB alongside the source
pplupo Jul 8, 2026
3404804
fix: correct DuckDB vcpkg find_package name and target
pplupo Jul 8, 2026
1884622
fix: fix x2tlib's own duckdb/mdb references after the vcpkg/shared-li…
pplupo Jul 8, 2026
3e018b5
fix: restore default symbol visibility for mdbtools.so
pplupo Jul 8, 2026
04d69d4
fix: add -Wno-enum-constexpr-conversion to V8 build flags
pplupo Jun 22, 2026
e3c8f12
fix: add openglwidgets to qt6 components
rikled Jul 19, 2026
05f13a4
build: make target microarchitecture configurable via vcpkg triplet
pplupo Jul 20, 2026
de4c5ba
Merge branch 'feature/configurable-arch-baseline' into feature/waylan…
pplupo Jul 20, 2026
a42d65d
Merge branch 'feature/wayland-migration' into db-support
pplupo Jul 20, 2026
5afc092
Merge remote-tracking branch 'origin/main' into feature/configurable-…
pplupo Jul 20, 2026
832184a
Merge branch 'feature/configurable-arch-baseline' into feature/waylan…
pplupo Jul 20, 2026
f8c5e70
Merge branch 'feature/wayland-migration' into db-support
pplupo Jul 20, 2026
b99f3d4
feat: Add database support for Berkeley DB
pplupo Jul 27, 2026
0425459
fix: vendor Berkeley DB 18.1.40 source instead of vcpkg
pplupo Jul 27, 2026
f1cf2aa
fix: correct vendored Berkeley DB build (missing gitignored files, CL…
pplupo Jul 27, 2026
36a82a1
fix: align vendored ICU to 73, matching Qt 6.10.1's system dependency
pplupo Aug 2, 2026
b8feda1
fix: fetch ICU's LICENSE from icu4c/, not the repo root
pplupo Aug 2, 2026
3b56947
Revert "fix: fetch ICU's LICENSE from icu4c/, not the repo root"
pplupo Aug 4, 2026
59d214b
Revert "fix: align vendored ICU to 73, matching Qt 6.10.1's system de…
pplupo Aug 4, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 10 additions & 2 deletions .docker/core.bake.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ ARG BUILD_ROOT
ARG NUGET_SOURCE_PATH
ARG PRODUCT=server
ARG TARGETARCH
ARG ARCH_TRIPLET=x64-linux-v2
ARG ARCH_MARCH_FLAGS=-march=x86-64-v2

# Desktop: 24.04 on arm, 22.04 on amd
FROM ubuntu:22.04 AS vcpkg-base-desktop-amd64
Expand Down Expand Up @@ -106,6 +108,7 @@ FROM vcpkg-${NUGET_CACHE} AS core-base
python3-httplib2 \
lsb-release autoconf automake libtool findutils \
gn \
mdbtools-dev \
#&& curl -fsSL https://apt.kitware.com/keys/kitware-archive-latest.asc \
# | gpg --dearmor -o /etc/apt/keyrings/kitware.gpg \
#&& echo "deb [signed-by=/etc/apt/keyrings/kitware.gpg] https://apt.kitware.com/ubuntu/ noble main" \
Expand Down Expand Up @@ -147,17 +150,22 @@ FROM vcpkg-${NUGET_CACHE} AS core-base
#### CORE ####
FROM core-base AS core
ARG NUGET_SOURCE_PATH
ARG TARGETARCH
ARG ARCH_TRIPLET
ARG ARCH_MARCH_FLAGS
RUN --mount=type=cache,target=/build-cache \
--mount=type=bind,source=${NUGET_SOURCE_PATH},target=/nuget-cache,rw \
mkdir -p ${BUILD_ROOT} && \
cd /build-cache && \
cmake -GNinja \
-DVCPKG_MANIFEST_MODE=ON \
-DVCPKG_MANIFEST_DIR=/core \
-DVCPKG_OVERLAY_TRIPLETS=/core/triplets \
-DVCPKG_TARGET_TRIPLET=${ARCH_TRIPLET} \
-DCMAKE_TOOLCHAIN_FILE=/opt/vcpkg/scripts/buildsystems/vcpkg.cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS_RELEASE="-O3 -w" \
-DCMAKE_C_FLAGS_RELEASE="-O3 -w" \
-DCMAKE_CXX_FLAGS_RELEASE="-O3 -w ${ARCH_MARCH_FLAGS}" \
-DCMAKE_C_FLAGS_RELEASE="-O3 -w ${ARCH_MARCH_FLAGS}" \
-DEO_CORE_OUTPUT_DIR=/build-cache/package/bin \
-DEO_CORE_TOOLS_DIR=/build-cache/package/tools \
/core && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ index a8618452794..4ab368a4149 100644
defines = []
cflags = []
+ if (!is_win) {
+ cflags += ["-include", "cstdint"]
+ cflags += ["-include", "cstdint", "-Wno-enum-constexpr-conversion"]
+ }
ldflags = []

Expand Down
Loading
Loading