Thread: clang -v
View Single Post
  #2   (View Single Post)  
Old 11th January 2013
Carpetsmoker's Avatar
Carpetsmoker Carpetsmoker is offline
Real Name: Martin
Tcpdump Spy
 
Join Date: Apr 2008
Location: Netherlands
Posts: 2,243
Default

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.
__________________
UNIX was not designed to stop you from doing stupid things, because that would also stop you from doing clever things.
Reply With Quote