Package Details: spdlog-git 1.12.0.r8.g2312489b-2

Git Clone URL: https://aur.archlinux.org/spdlog-git.git (read-only, click to copy)
Package Base: spdlog-git
Description: Very fast, header only, C++ logging library
Upstream URL: https://github.com/gabime/spdlog
Licenses: MIT
Conflicts: spdlog
Provides: libspdlog.so, spdlog
Submitter: ido
Maintainer: FabioLolix
Last Packager: FabioLolix
Votes: 9
Popularity: 0.068990
First Submitted: 2014-12-29 09:08 (UTC)
Last Updated: 2023-08-13 14:56 (UTC)

Dependencies (5)

Required by (74)

Sources (1)

Latest Comments

1 2 Next › Last »

MarcusE1W commented on 2023-08-22 15:13 (UTC)

Successfully build on the Pinebook Pro. You could add aarch64as architecture.

ohmyarch commented on 2020-03-25 03:32 (UTC)

@technophil98 Just modify MAKEFLAGS in /etc/makepkg.conf.

technophil98 commented on 2020-03-25 03:16 (UTC)

Thank you @ohmyarch for the package. Perhaps adding a -j flag to the make command would speed up installation time?

build() {
  cd build
  cmake ../spdlog \
    -DSPDLOG_BUILD_BENCH=OFF \
    -DSPDLOG_BUILD_EXAMPLES=OFF \
    -DSPDLOG_BUILD_TESTS=ON \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DCMAKE_INSTALL_LIBDIR=lib
  make -j4
}

wbthomason commented on 2019-06-29 16:00 (UTC)

@ohmyarch: Thank you!

ohmyarch commented on 2019-06-13 09:39 (UTC)

@wbthomason Fixed.

wbthomason commented on 2019-05-28 15:27 (UTC) (edited on 2019-05-28 15:28 (UTC) by wbthomason)

Installation fails with:

make: *** No rule to make target 'test'. Stop.

It appears that tests are turned off by default in the current CMakeLists.txt and not enabled in the PKGBUILD. Perhaps the check() function should be removed?

ohmyarch commented on 2018-11-14 02:39 (UTC)

@burning_daylight Fixed.

burning_daylight commented on 2018-11-05 14:03 (UTC) (edited on 2018-11-05 14:08 (UTC) by burning_daylight)

Installation fails with:

82% Linking CXX executable async_bench
/usr/sbin/ld: cannot find -lbenchmark
collect2: error: ld returned 1 exit status
make[2]: *** [bench/CMakeFiles/async_bench.dir/build.make:84: bench/async_bench] 
Error 1
make[1]: *** [CMakeFiles/Makefile2:1172: bench/CMakeFiles/async_bench.dir/all] 
Error 2
make: *** [Makefile:141: all] Error 2
==> ERROR: A failure occurred in build().
    Aborting...
:: failed to build spdlog-git package(s)

ohmyarch commented on 2017-10-10 16:30 (UTC)

@thrimbor @pepper-jk Fixed.