Package Details: fuzzylite 6.0-7

Git Clone URL: https://aur.archlinux.org/fuzzylite.git (read-only, click to copy)
Package Base: fuzzylite
Description: C++ fuzzy logic control library
Upstream URL: https://github.com/fuzzylite/fuzzylite
Keywords: library
Licenses: GPL-3.0-only
Provides: libfuzzylite.so
Submitter: bwrsandman
Maintainer: carsme
Last Packager: carsme
Votes: 12
Popularity: 0.55
First Submitted: 2017-09-10 17:34 (UTC)
Last Updated: 2024-01-28 22:34 (UTC)

Latest Comments

1 2 Next › Last »

carsme commented on 2023-12-01 13:40 (UTC)

Sorry for taking so long to look into this. I've removed the failing tests, not sure why they started failing.

Let me know if there are more issues.

petronny commented on 2023-11-27 14:45 (UTC)

FYI, tests also fail on aarch64.

 test cases:  36 |  35 passed |  1 failed
assertions: 492 | 480 passed | 12 failed

==> ERROR: A failure occurred in check().

https://github.com/arch4edu/cactus/actions/runs/7005359344/job/19054936549

carsme commented on 2023-09-05 20:04 (UTC)

@FabioLolix I can reproduce it but I have no idea why it happens. Will try to investigate.

FabioLolix commented on 2023-09-04 18:54 (UTC)

I have some tests fail, anyone else?

===============================================================================
test cases:  36 |  35 passed |  1 failed
assertions: 492 | 480 passed | 12 failed

==> ERROR: A failure occurred in check().

UVLabel commented on 2023-06-13 00:11 (UTC) (edited on 2023-06-13 00:14 (UTC) by UVLabel)

-Werror is set in fuzzylite/CMakeLists.txt. It looks like a TODO was not resolved.

- set(CMAKE_CXX_FLAGS "-pedantic -Wall -Wextra -Werror ${CMAKE_CXX_FLAGS}")
+ set(CMAKE_CXX_FLAGS "-pedantic -Wall -Wextra ${CMAKE_CXX_FLAGS}")

Commit: https://github.com/fuzzylite/fuzzylite/commit/81b31f87006ed8708ee2424cb9b525d89c039e29

lmartinez-mirror commented on 2023-04-22 02:44 (UTC)

Working on patching out -Werror from the build. If anyone knows how, patches are welcome!

lmartinez-mirror commented on 2023-04-18 19:31 (UTC)

Thanks for the heads up, currently working on a fix.

xcom commented on 2022-09-17 12:40 (UTC)

It's not building on the current Arch Linux. I had to delete " std::set_unexpected(unexpected_handler) " line from main.cpp .

fenuks commented on 2022-08-22 19:08 (UTC)

It doesn't build with newest gcc

/home/fenuks/.cache/paru/clone/fuzzylite/src/fuzzylite-6.0/fuzzylite/src/main.cpp:24:24: error: ‘void (* std::set_unexpected(unexpected_handler))()’ is deprecated [-Werror=deprecated-declarations]
   24 |     std::set_unexpected(fl::Exception::terminate);
      |     ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~

It can be fixed by disabling Werror, or using this patch. https://github.com/fuzzylite/fuzzylite/pull/108

fenuks commented on 2020-08-06 20:44 (UTC)

Please add ARM platforms to PKGBUILD arch=('i686' 'x86_64' 'arm' 'armv7h' 'armv6h' 'aarch64') (I had it compiled on aarch64).