Search Criteria
Package Details: xqilla 2.3.4-4
Package Actions
Git Clone URL: | https://aur.archlinux.org/xqilla.git (read-only, click to copy) |
---|---|
Package Base: | xqilla |
Description: | An XQuery and XPath 2.0 library, written in C++ and built on top of Xerces-C. |
Upstream URL: | http://xqilla.sourceforge.net/ |
Licenses: | GPL3 |
Submitter: | dbiehl |
Maintainer: | camwebb |
Last Packager: | camwebb |
Votes: | 1 |
Popularity: | 0.000000 |
First Submitted: | 2018-09-05 00:10 (UTC) |
Last Updated: | 2024-11-11 06:26 (UTC) |
Dependencies (3)
- clang (llvm-rocm-gitAUR, llvm-gitAUR, clang-minimal-gitAUR)
- icu (icu-gitAUR)
- xerces-c
Latest Comments
camwebb commented on 2023-11-06 19:21 (UTC)
Also now need to add
-std=c++11
to the compiler flags. Builds OK withLIBS=-lstdc++ CC=clang CXX=clang CXXFLAGS=-std=c++11 ./configure --prefix=/usr --with-xerces=/usr
rjp commented on 2021-11-01 16:19 (UTC)
Fails to build with GCC 11.1.0 (also affecting Debian and Gentoo.) Builds fine with Clang 12.0.1 if
-lstdc++
is added to the linker line in the Makefile - all this can be done automatically by prefixing theconfigure
line inbuild()
withLIBS=-lstdc++ CC=clang CXX=clang
(and obvs. adding a dependency onclang
.)