Changes between Initial Version and Version 1 of Ticket #35757


Ignore:
Timestamp:
Aug 20, 2012, 9:56:49 PM (12 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35757

    • Property Priority changed from High to Normal
    • Property Owner changed from macports-tickets@… to jeremyhu@…
    • Property Summary changed from clang in MacPorts has problems with "libc++" to clang-2.9, clang-3.0, clang-3.1, clang-3.2: problems with "libc++"
    • Property Port clang-2.9 clang-3.0 clang-3.1 clang-3.2 added
  • Ticket #35757 – Description

    initial v1  
    33I attached a simple C++ source file with 3 lines of code.  It can not be compiled with an MacPort installation of any clang compiler.  Try
    44
     5{{{
    56clang++ main.cc
     7}}}
    68 #fails because one header is c++11 specific
    79
     10{{{
    811clang++ -std=c++11 main.cc
     12}}}
    913 #fails because <type_traits> can not be found
    1014
     15{{{
    1116clang++ -std=c++11 -stdlib=libc++ main.cc
     17}}}
    1218 #fails because <complex> can not be found
    1319