-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f78af43
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This may be premature.
I have had compile failures with Catch v2.0.1 in the configurations that use
g++
(any version) with Clang'slibc++
(as supplied in Artful Aardvark package version 3.9.1-3).The error message is (in part)
It seems that Catch2 triggers some defect in
g++
.Successful configurations include: Catch2 with
Clang
; Catch2 withg++
andstdlibc++-v3
.My C++11 branch contains a change that freezes Catch at
v1.11.0
using the pathhttps://raw.githubusercontent.com/catchorg/Catch2/v1.11.0/single_include/catch.hpp
.In the meantime I will do more to determine if this is a reported defect and what a
minimal test case might look like.
f78af43
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I raised issue Make Catch_global_namespace_dummy a complete type in the Catch2 project summarizing the failure and suggesting a fix.