Changes between Initial Version and Version 1 of Ticket #42761, comment 7


Ignore:
Timestamp:
Apr 4, 2014, 12:42:24 PM (10 years ago)
Author:
neverlunch@…
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #42761, comment 7

    initial v1  
    11I just solved similar problem. Some intrinsics functions like _mm256_set1_epi16 were missing until I install the latest Command Line Tools (for OS X Lion, in my case) from Apple Developer Downloads.
    22
    3 I hope this will help...
     3
     4clang -v ::
     5
     6Before:
     7Apple clang version 3.1 (tags/Apple/clang-318.0.61) (based on LLVM 3.1svn)
     8Target: x86_64-apple-darwin11.4.2
     9Thread model: posix
     10
     11After:
     12Apple LLVM version 4.2 (clang-425.0.28) (based on LLVM 3.2svn)
     13Target: x86_64-apple-darwin11.4.2
     14Thread model: posix
     15
     16I hope this will help…