Changes between Version 2 and Version 3 of Ticket #40968, comment 6


Ignore:
Timestamp:
Dec 9, 2013, 4:36:37 PM (10 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #40968, comment 6

    v2 v3  
    11This is what Jack Lloyd says over on the botan site:
    22
    3 "If Botan is being built by a compiler without TR1 support, you need to pass the
    4 option --with-tr1=none to configure.py. Alternately, if boost is available,
    5 --with-tr=boost will attempt to use it rather than the compiler-provided
    6 version. If TR1 is disabled (using `none`) then the TLS implementation will not
    7 be included in the build.
    8 
    9 "There is version detection for GCC, but for Clang it just assumes TR1 is
    10 supported, as I had thought that all versions of Clang with complete enough
    11 C++98 to compile botan also include TR1. What version of Clang do you have on
    12 your system?"
     3> If Botan is being built by a compiler without TR1 support, you need to pass the
     4> option --with-tr1=none to configure.py. Alternately, if boost is available,
     5> --with-tr=boost will attempt to use it rather than the compiler-provided
     6> version. If TR1 is disabled (using `none`) then the TLS implementation will not
     7> be included in the build.
     8>
     9> There is version detection for GCC, but for Clang it just assumes TR1 is
     10> supported, as I had thought that all versions of Clang with complete enough
     11> C++98 to compile botan also include TR1. What version of Clang do you have on
     12> your system?
    1313
    1414The answer to his question at the end is:
    1515
     16{{{
    1617$ clang --version
    17 
    1818Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
    19 
    2019Target: x86_64-apple-darwin13.0.0
    21 
    2220Thread model: posix
     21}}}
    2322
    2423Can someone write a patch to fix this problem, please?