Skip to content

Instantly share code, notes, and snippets.

@Thymelizabeth
Created December 13, 2022 06:01
Show Gist options
  • Save Thymelizabeth/0fc677de13247ead221fd86de29dcd50 to your computer and use it in GitHub Desktop.
Save Thymelizabeth/0fc677de13247ead221fd86de29dcd50 to your computer and use it in GitHub Desktop.
hyprpaper ab85578 build log
shell-prompt$ make all
make clear
make[1]: Entering directory '/home/edoughty/build/hyprpaper'
rm -rf build
rm -f *.o *-protocol.h *-protocol.c
make[1]: Leaving directory '/home/edoughty/build/hyprpaper'
make protocols
make[1]: Entering directory '/home/edoughty/build/hyprpaper'
/usr/bin/wayland-scanner private-code \
protocols/wlr-layer-shell-unstable-v1.xml wlr-layer-shell-unstable-v1-protocol.c
/usr/bin/wayland-scanner client-header \
protocols/wlr-layer-shell-unstable-v1.xml wlr-layer-shell-unstable-v1-protocol.h
cc -g -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare -Wno-unused-function -Wno-unused-variable -Wno-unused-result -Wdeclaration-after-statement -I. -DWLR_USE_UNSTABLE -std=c99 -I/usr/lib/libffi/include -I/usr/include/libdrm -I/usr/include/pixman-1 -I/usr/include/elogind -I/usr/lib/libffi/include -c -o wlr-layer-shell-unstable-v1-protocol.o wlr-layer-shell-unstable-v1-protocol.c
/usr/bin/wayland-scanner private-code \
//usr/share/wayland-protocols/stable/xdg-shell/xdg-shell.xml xdg-shell-protocol.c
/usr/bin/wayland-scanner client-header \
//usr/share/wayland-protocols/stable/xdg-shell/xdg-shell.xml xdg-shell-protocol.h
cc -g -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare -Wno-unused-function -Wno-unused-variable -Wno-unused-result -Wdeclaration-after-statement -I. -DWLR_USE_UNSTABLE -std=c99 -I/usr/lib/libffi/include -I/usr/include/libdrm -I/usr/include/pixman-1 -I/usr/include/elogind -I/usr/lib/libffi/include -c -o xdg-shell-protocol.o xdg-shell-protocol.c
make[1]: Leaving directory '/home/edoughty/build/hyprpaper'
make release
make[1]: Entering directory '/home/edoughty/build/hyprpaper'
mkdir -p build && cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -H./ -B./build -G Ninja
Not searching for unused variables given on the command line.
-- The C compiler identification is GNU 11.3.0
-- The CXX compiler identification is GNU 11.3.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring hyprpaper!
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Found PkgConfig: /usr/bin/pkg-config (found version "1.8.0")
-- Checking for modules 'wayland-client;wayland-protocols;cairo;pango;pangocairo;libjpeg'
-- Found wayland-client, version 1.21.0
-- Found wayland-protocols, version 1.27
-- Found cairo, version 1.16.0
-- Found pango, version 1.50.11
-- Found pangocairo, version 1.50.11
-- Found libjpeg, version 2.1.4
-- Configuring done
-- Generating done
-- Build files have been written to: /home/edoughty/build/hyprpaper/build
cmake --build ./build --config Release --target all -j 10
[6/11] Building CXX object CMakeFiles/hyprpaper.dir/src/Hyprpaper.cpp.o
FAILED: CMakeFiles/hyprpaper.dir/src/Hyprpaper.cpp.o
/usr/bin/c++ -DGIT_BRANCH=\"main\" -DGIT_COMMIT_HASH=\"ab85578dce442b80aa3378fe0304e6cb6f16f593\" -DGIT_COMMIT_MESSAGE="\" fix crash with unloadAll\"" -DGIT_DIRTY=\"\" -I/home/edoughty/build/hyprpaper/. -isystem /usr/lib/libffi/include -isystem /usr/include/cairo -isystem /usr/include/glib-2.0 -isystem /usr/lib/glib-2.0/include -isystem /usr/include/pixman-1 -isystem /usr/include/freetype2 -isystem /usr/include/libpng16 -isystem /usr/include/pango-1.0 -isystem /usr/include/harfbuzz -isystem /usr/include/libmount -isystem /usr/include/blkid -isystem /usr/include/fribidi -O3 -DNDEBUG -std=c++23 -DWLR_USE_UNSTABLE -Wall -Wextra -Wno-unused-parameter -Wno-unused-value -Wno-missing-field-initializers -Wno-narrowing -pthread -MD -MT CMakeFiles/hyprpaper.dir/src/Hyprpaper.cpp.o -MF CMakeFiles/hyprpaper.dir/src/Hyprpaper.cpp.o.d -o CMakeFiles/hyprpaper.dir/src/Hyprpaper.cpp.o -c /home/edoughty/build/hyprpaper/src/Hyprpaper.cpp
/home/edoughty/build/hyprpaper/src/Hyprpaper.cpp: In member function 'void CHyprpaper::createBuffer(SPoolBuffer*, int32_t, int32_t, uint32_t)':
/home/edoughty/build/hyprpaper/src/Hyprpaper.cpp:351:11: error: 'uint' does not name a type; did you mean 'int'?
351 | const uint STRIDE = w * 4;
| ^~~~
| int
/home/edoughty/build/hyprpaper/src/Hyprpaper.cpp:352:25: error: 'STRIDE' was not declared in this scope
352 | const size_t SIZE = STRIDE * h;
| ^~~~~~
[10/11] Building CXX object CMakeFiles/hyprpaper.dir/src/config/ConfigManager.cpp.o
ninja: build stopped: subcommand failed.
make[1]: *** [Makefile:41: release] Error 1
make[1]: Leaving directory '/home/edoughty/build/hyprpaper'
make: *** [Makefile:50: all] Error 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment