CC1Options.td revision 31db76cb2dde031ab3262808ac233889daf7d720
1//===--- CC1Options.td - Options for clang -cc1 ---------------------------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10//  This file defines the options accepted by clang -cc1.
11//
12//===----------------------------------------------------------------------===//
13
14// Include the common option parsing interfaces.
15include "OptParser.td"
16
17// Target Options
18
19def target_abi : Separate<"-target-abi">,
20  HelpText<"Target a particular ABI type">;
21def mcpu : Separate<"-mcpu">,
22  HelpText<"Target a specific cpu type (-mcpu=help for details)">;
23def target_feature : Separate<"-target-feature">,
24  HelpText<"Target specific attributes">;
25def triple : Separate<"-triple">,
26  HelpText<"Specify target triple (e.g. i686-apple-darwin9)">;
27