Travis CI with Clang 3.4 and C++11

后端 未结 3 595
我在风中等你
我在风中等你 2021-01-30 00:26

Is it possible to get Travis CI working with Clang that is capable of C++11? (I want Clang, not GCC, I already have GCC 4.8 working in Travis CI.) It appears that the version th

3条回答
  •  -上瘾入骨i
    2021-01-30 00:39

    It appears that the clang developers fixed this when you build in -std=gnu++11 mode.

    Are you able to build with that flag instead of __STRICT_ANSI__?

    • http://llvm.org/bugs/show_bug.cgi?id=13530
    • http://llvm.org/viewvc/llvm-project?view=revision&revision=184476

提交回复
热议问题