Merge branch 'master' of github.com:royqh1979/RedPanda-CPP
This commit is contained in:
commit
5ef4a680e7
2
BUILD.md
2
BUILD.md
|
@ -195,7 +195,7 @@ The package will be placed in `dist/`.
|
|||
## Linux AppImage
|
||||
|
||||
```bash
|
||||
podman run --rm -v $PWD:/mnt -w /mnt quay.io/redpanda-cpp/appimage-builder-x86_64:20240304.0 ./packages/appimage/01-in-docker.sh
|
||||
podman run --rm -v $PWD:/mnt -w /mnt quay.io/redpanda-cpp/appimage-builder-x86_64:20240610.0 ./packages/appimage/01-in-docker.sh
|
||||
```
|
||||
|
||||
Dockerfiles are available in [redpanda-cpp/appimage-builder](https://github.com/redpanda-cpp/appimage-builder). Available architectures: `x86_64`, `aarch64`, `riscv64`.
|
||||
|
|
|
@ -195,7 +195,7 @@ podman run --rm -v $PWD:/mnt -w /mnt docker.io/archlinux:latest ./packages/archl
|
|||
## Linux AppImage
|
||||
|
||||
```bash
|
||||
podman run --rm -v $PWD:/mnt -w /mnt quay.io/redpanda-cpp/appimage-builder-x86_64:20240304.0 ./packages/appimage/01-in-docker.sh
|
||||
podman run --rm -v $PWD:/mnt -w /mnt quay.io/redpanda-cpp/appimage-builder-x86_64:20240610.0 ./packages/appimage/01-in-docker.sh
|
||||
```
|
||||
|
||||
Dockerfile 位于 [redpanda-cpp/appimage-builder](https://github.com/redpanda-cpp/appimage-builder)。可用架构:`x86_64`、`aarch64`、`riscv64`。
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
{
|
||||
"Active Breakpoint": {
|
||||
"background": "#ff00376f",
|
||||
"background": "#500055ff",
|
||||
"bold": false,
|
||||
"foreground": "#ffffffce",
|
||||
"italic": false,
|
||||
"strikeout": false,
|
||||
"underlined": false
|
||||
|
@ -22,7 +21,7 @@
|
|||
"underlined": false
|
||||
},
|
||||
"Breakpoint": {
|
||||
"background": "#ff002535",
|
||||
"background": "#2200aaff",
|
||||
"bold": false,
|
||||
"italic": false,
|
||||
"strikeout": false,
|
||||
|
@ -80,7 +79,7 @@
|
|||
},
|
||||
"Float": {
|
||||
"bold": false,
|
||||
"foreground": "#ffffaa00",
|
||||
"foreground": "#ffffc655",
|
||||
"italic": false,
|
||||
"strikeout": false,
|
||||
"underlined": false
|
||||
|
@ -123,7 +122,7 @@
|
|||
},
|
||||
"Hexadecimal": {
|
||||
"bold": false,
|
||||
"foreground": "#ffffaa00",
|
||||
"foreground": "#ffffc655",
|
||||
"italic": false,
|
||||
"strikeout": false,
|
||||
"underlined": false
|
||||
|
@ -165,7 +164,7 @@
|
|||
},
|
||||
"Octal": {
|
||||
"bold": false,
|
||||
"foreground": "#ffffaa00",
|
||||
"foreground": "#ffffc655",
|
||||
"italic": false,
|
||||
"strikeout": false,
|
||||
"underlined": false
|
||||
|
@ -201,7 +200,7 @@
|
|||
},
|
||||
"Space": {
|
||||
"bold": false,
|
||||
"foreground": "#ff505050",
|
||||
"foreground": "#8e838383",
|
||||
"italic": false,
|
||||
"strikeout": false,
|
||||
"underlined": false
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
{
|
||||
"Active Breakpoint": {
|
||||
"background": "#ff00376f",
|
||||
"background": "#500055ff",
|
||||
"bold": false,
|
||||
"foreground": "#ffffffce",
|
||||
"italic": false,
|
||||
"strikeout": false,
|
||||
"underlined": false
|
||||
|
@ -22,7 +21,7 @@
|
|||
"underlined": false
|
||||
},
|
||||
"Breakpoint": {
|
||||
"background": "#ff002535",
|
||||
"background": "#2200aaff",
|
||||
"bold": false,
|
||||
"italic": false,
|
||||
"strikeout": false,
|
||||
|
@ -201,7 +200,7 @@
|
|||
},
|
||||
"Space": {
|
||||
"bold": false,
|
||||
"foreground": "#ff505050",
|
||||
"foreground": "#8e838383",
|
||||
"italic": false,
|
||||
"strikeout": false,
|
||||
"underlined": false
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
"underlined": false
|
||||
},
|
||||
"Gutter": {
|
||||
"background": "#20404040",
|
||||
"background": "#1c404040",
|
||||
"bold": false,
|
||||
"foreground": "#ff969696",
|
||||
"italic": false,
|
||||
|
@ -201,7 +201,7 @@
|
|||
},
|
||||
"Space": {
|
||||
"bold": false,
|
||||
"foreground": "#ffbababa",
|
||||
"foreground": "#8e838383",
|
||||
"italic": false,
|
||||
"strikeout": false,
|
||||
"underlined": false
|
||||
|
|
|
@ -13,7 +13,7 @@ DEB_FILE="redpanda-cpp-bin_${VERSION}_amd64.deb"
|
|||
|
||||
TMP_FOLDER="$(mktemp -d)"
|
||||
|
||||
podman run -it --rm -v "$PWD:/mnt" -w /mnt -v "$TMP_FOLDER:/out" quay.io/redpanda-cpp/appimage-builder-x86_64:20240304.0 packages/debian-static/01-in-docker.sh
|
||||
podman run -it --rm -v "$PWD:/mnt" -w /mnt -v "$TMP_FOLDER:/out" quay.io/redpanda-cpp/appimage-builder-x86_64:20240610.0 packages/debian-static/01-in-docker.sh
|
||||
|
||||
mkdir -p dist
|
||||
mkdir -m 755 -p "$TMP_FOLDER/DEBIAN"
|
||||
|
|
|
@ -8,7 +8,7 @@ Version: __VERSION__
|
|||
Architecture: amd64
|
||||
Depends: gcc, g++, make, gdb, gdbserver, astyle,
|
||||
libc6 (>= 2.17), libstdc++6 (>= 4.8),
|
||||
libdbus-1-3, libfontconfig1, libfreetype6, libwayland-client0, libwayland-cursor0, libwayland-server0, libx11-6, libx11-xcb1, libxcb1, libxcb-icccm4, libxcb-image0, libxcb-keysyms1, libxcb-randr0, libxcb-render-util0, libxcb-render0, libxcb-shape0, libxcb-shm0, libxcb-sync1, libxcb-xfixes0, libxcb-xinerama0, libxcb-xkb1, libxcb1, libxext6, libxkbcommon-x11-0, libxkbcommon0, libzstd1
|
||||
libdbus-1-3, libfontconfig1, libfreetype6, libwayland-client0, libwayland-cursor0, libx11-6, libx11-xcb1, libxcb1, libxcb-icccm4, libxcb-image0, libxcb-keysyms1, libxcb-randr0, libxcb-render-util0, libxcb-render0, libxcb-shape0, libxcb-shm0, libxcb-sync1, libxcb-xfixes0, libxcb-xinerama0, libxcb-xkb1, libxcb1, libxext6, libxkbcommon-x11-0, libxkbcommon0
|
||||
Recommends: qterminal | konsole | gnome-terminal | terminator | lxterminal | mate-terminal | terminology | xfce4-terminal | alacritty | cool-retro-term | kitty | sakura | termit | tilix
|
||||
Suggests: clang
|
||||
Description: A lightweight but powerful C/C++ IDE, built upon static Qt 5.15
|
||||
|
|
Loading…
Reference in New Issue