Thread: clang -v
View Single Post
  #3   (View Single Post)  
Old 11th January 2013
lumiwa lumiwa is offline
Package Pilot
 
Join Date: May 2008
Posts: 145
Default

Quote:
Originally Posted by Carpetsmoker View Post
Code:
/// Target triples are strings in the canonical form:
///   ARCHITECTURE-VENDOR-OPERATING_SYSTEM
/// or
///   ARCHITECTURE-VENDOR-OPERATING_SYSTEM-ENVIRONMENT
In this case the vendor is `unknown'.

Possible vendors seem to be:
Code:
  enum VendorType {
    UnknownVendor,

    Apple,
    PC,
    SCEI
  };
(See: src/contrib/llvm/tools/clang/lib/Driver/Driver.cpp and src/contrib/llvm/include/llvm/ADT/Triple.h)

AFAIK this does nothing or very little, but I didn't investigate further.
I was confused why is FreeBSD 9.0 if I have 9.1 version.

Thank you.
Reply With Quote