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


Ignore:
Timestamp:
Jul 13, 2014, 6:14:58 AM (10 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #42761, comment 7

    v1 v2  
    1 I 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.
     1I 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
    33
    4 clang -v ::
     4`clang -v` ::
    55
    66Before:
     7{{{
    78Apple clang version 3.1 (tags/Apple/clang-318.0.61) (based on LLVM 3.1svn)
    89Target: x86_64-apple-darwin11.4.2
    910Thread model: posix
     11}}}
    1012
    1113After:
     14{{{
    1215Apple LLVM version 4.2 (clang-425.0.28) (based on LLVM 3.2svn)
    1316Target: x86_64-apple-darwin11.4.2
    1417Thread model: posix
     18}}}
    1519
    1620I hope this will help…