Search Criteria
Package Details: lib32-mcpelauncher-linux 1.1.1-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/mcpelauncher-linux.git (read-only, click to copy) |
---|---|
Package Base: | mcpelauncher-linux |
Description: | Minecraft: Pocket Edition launcher for Linux (32bit client support) |
Upstream URL: | https://github.com/minecraft-linux/mcpelauncher-manifest |
Licenses: | GPL-3.0-only |
Submitter: | HurricanePootis |
Maintainer: | HurricanePootis |
Last Packager: | HurricanePootis |
Votes: | 3 |
Popularity: | 0.44 |
First Submitted: | 2024-06-12 01:51 (UTC) |
Last Updated: | 2024-10-24 17:02 (UTC) |
Dependencies (58)
- lib32-gcc-libs (lib32-gcc-libs-gitAUR, lib32-gccrs-libs-gitAUR, lib32-gcc-libs-snapshotAUR)
- lib32-glibc (lib32-glibc-gitAUR, lib32-glibc-linux4AUR, lib32-glibc-eacAUR, lib32-glibc-eac-binAUR, lib32-glibc-eac-rocoAUR)
- lib32-libevdevAUR
- lib32-libglvnd
- lib32-libpng
- lib32-libx11
- lib32-openssl
- lib32-systemd (lib32-systemd-gitAUR)
- lib32-zlib
- alsa-lib (make)
- clang (llvm-rocm-gitAUR, llvm-gitAUR, clang-minimal-gitAUR) (make)
- cmake (cmake-gitAUR) (make)
- fcitx5 (fcitx5-gitAUR) (make)
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc11-libsAUR, gcc-libs-snapshotAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR, glibc-eac-binAUR, glibc-eac-rocoAUR) (make)
- ibus (ibus-gitAUR) (make)
- jackAUR (jack2-gitAUR, pipewire-jack-gitAUR, pipewire-full-jack-gitAUR, jack2, pipewire-jack) (make)
- lib32-alsa-lib (make)
- lib32-gcc-libs (lib32-gcc-libs-gitAUR, lib32-gccrs-libs-gitAUR, lib32-gcc-libs-snapshotAUR) (make)
- Show 38 more dependencies...
Required by (1)
- mcpelauncher-linux (optional)
Sources (32)
- git+https://github.com/ChristopherHX/libjnivm
- git+https://github.com/libsdl-org/SDL
- git+https://github.com/MCMrARM/linux-gamepad
- git+https://github.com/MCMrARM/simple-ipc
- git+https://github.com/minecraft-linux/android-support-headers
- git+https://github.com/minecraft-linux/android_bionic
- git+https://github.com/minecraft-linux/android_core
- git+https://github.com/minecraft-linux/arg-parser
- git+https://github.com/minecraft-linux/base64
- git+https://github.com/minecraft-linux/cll-telemetry
- git+https://github.com/minecraft-linux/daemon-utils
- git+https://github.com/minecraft-linux/eglut
- git+https://github.com/minecraft-linux/epoll-shim
- git+https://github.com/minecraft-linux/file-picker
- git+https://github.com/minecraft-linux/file-util
- git+https://github.com/minecraft-linux/game-window
- git+https://github.com/minecraft-linux/libc-shim
- git+https://github.com/minecraft-linux/logger
- git+https://github.com/minecraft-linux/mcpelauncher-client
- git+https://github.com/minecraft-linux/mcpelauncher-common
- git+https://github.com/minecraft-linux/mcpelauncher-core
- git+https://github.com/minecraft-linux/mcpelauncher-errorwindow
- git+https://github.com/minecraft-linux/mcpelauncher-linker
- git+https://github.com/minecraft-linux/mcpelauncher-linux-bin
- git+https://github.com/minecraft-linux/mcpelauncher-mac-bin
- git+https://github.com/minecraft-linux/mcpelauncher-manifest.git#tag=v1.1.1-qt6
- git+https://github.com/minecraft-linux/mcpelauncher-webview
- git+https://github.com/minecraft-linux/minecraft-imported-symbols
- git+https://github.com/minecraft-linux/msa-daemon-client
- git+https://github.com/minecraft-linux/osx-elf-header
- git+https://github.com/minecraft-linux/properties-parser
- git+https://github.com/ocornut/imgui
Latest Comments
asalde_le1 commented on 2024-08-19 08:07 (UTC)
@HurricanePootis Thank you very much for your kind words and for your work on this package!
HurricanePootis commented on 2024-08-19 03:55 (UTC)
@asalde_le1
Don't be sorry that you asked questions. Asking questions is the best way to learn. Sorry if I came across rude. You did a good thing reaching out to me with your concerns, even if in the end they ended up being not true. Without you, I wouldn't have gone again and checked the flags to get it building. So, thank you for motivating me to do a deeper check!
asalde_le1 commented on 2024-08-19 03:30 (UTC)
@HurricanePootis thank you for the detailed answer. Sorry if some of my questions were dumb.
HurricanePootis commented on 2024-08-19 03:05 (UTC) (edited on 2024-08-19 03:42 (UTC) by HurricanePootis)
@asalde_le1
DCMAKE_BUILD_TYPE
toRelease
is not advised by the CMake package guidelines, as it overrides the makeflags set for Arch Linux-stdlib=c++17
fixed the issue is because by giving cmake the arugment-DCMAKE_CXX_FLAGS="-stdlib=c++17"
, you are not passing along the$CXXFLAGS
variable to Cmake as defined in/etc/makepkg.conf
, where the-Wp,-D_FORTIFY_SOURCE-3
is. The project currently builds and is able to run as is. If the project requires C++17, then it will be automatically set in Cmake as needed by the developers. Edit:mcpelauncher-manifest
'sCMakeLists.txt
does set C++17 as a standard, no need for the flag.-DENABLE_DEV_PATHS=OFF
is already setasalde_le1 commented on 2024-08-19 00:23 (UTC)
Also please add -DENABLE_DEV_PATHS=OFF option and change DCMAKE_BUILD_TYPE to Release. And the v1.0.0-qt6 version is released
asalde_le1 commented on 2024-08-19 00:01 (UTC)
@HurricanePootis in ci configs in official repos they specify c++ 17 standard, that fixes the problem for me. Maybe the better way is to specify 17 standard?
HurricanePootis commented on 2024-08-18 18:12 (UTC)
@asalde_le1 the problem was not the C++ standard, it was
-Wp,-D_FORTIFY_SOURCE=3
. I am pushing an update rn to fix this.asalde_le1 commented on 2024-08-18 15:32 (UTC) (edited on 2024-08-18 16:29 (UTC) by asalde_le1)
The problem is that by default the compiler uses C++ 14 instead of 17, that is required. Here is the patch to fix this problem:
HurricanePootis commented on 2024-07-28 10:10 (UTC) (edited on 2024-08-18 19:35 (UTC) by HurricanePootis)
The issue has been reported to the github here. According to chats in the discord, a compiler / stdlib update has removed a feature that libc-shim relied on, and sounds like it will require a rewrite. Please be patient in the meantime, and go installmcpelauncher-appimage
Edit: The issue has been fix as of 0.15.2-2
NyaomiDEV commented on 2024-07-26 15:19 (UTC) (edited on 2024-07-26 15:20 (UTC) by NyaomiDEV)
Trying to build ver. 0.15.2-1 fails on my system with Makefile error 2: