Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Mar 2017 11:22:57 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 218030] [New port] devel/hhdate: A date and time library based on the C++11 (and beyond) <chrono> header
Message-ID:  <bug-218030-13-0PxUwcMdf2@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-218030-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-218030-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D218030

--- Comment #6 from Andreas Sommer <andreas.sommer87@googlemail.com> ---
(In reply to Michael Gmelin from comment #4)
The library works fine for both C++11/C++14 but the tests seem only maintai=
ned
for C++14. Since the tests don't build for C++11, I simply didn't make the
effort at the current time to fix that. The upstream maintainer already fix=
ed
some problems that came up during the port build (TEST=3Don), and I think m=
aking
it build with C++11 could be done when the maintainer or I have more time
available.

Since the library states that it works for both standards, I added these te=
sts
to actually confirm that statement:
> @echo "C++14 compiler (chosen: ${CXX}) should compile minimal example"
> ${CXX} -std=3Dc++14 -stdlib=3Dlibc++ ${CXXFLAGS} ${FILESDIR}/test-minimal=
.cpp \
>         -I${STAGEDIR}${PREFIX}/include -o ${WRKDIR}/test-minimal && \
>         ${WRKDIR}/test-minimal >/dev/null
>=20
> @echo "System compiler in C++11 mode should compile minimal example"
> clang++ -std=3Dc++11 -stdlib=3Dlibc++ ${FILESDIR}/test-minimal.cpp \
>         -I${STAGEDIR}${PREFIX}/include -o ${WRKDIR}/test-minimal && \
>         ${WRKDIR}/test-minimal >/dev/null

Regarding USE_CXXSTD: we're juggling two different language standards in the
Makefile, so I'd rather have it explicitly defined everywhere (everywhere =
=3D
"do-test" target). What do you think?

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-218030-13-0PxUwcMdf2>