[llvm-branch-commits] [cfe-branch] r71527 - /cfe/branches/Apple/Dib/docs/tools/clang.pod
Mike Stump
mrs at apple.com
Mon May 11 18:05:22 PDT 2009
Author: mrs
Date: Mon May 11 20:05:22 2009
New Revision: 71527
URL: http://llvm.org/viewvc/llvm-project?rev=71527&view=rev
Log:
Merge in 71109:
Document environment variables we handle, and don't mention -pipe (it
isn't yet supported... lazy developers).
Modified:
cfe/branches/Apple/Dib/docs/tools/clang.pod
Modified: cfe/branches/Apple/Dib/docs/tools/clang.pod
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/Apple/Dib/docs/tools/clang.pod?rev=71527&r1=71526&r2=71527&view=diff
==============================================================================
--- cfe/branches/Apple/Dib/docs/tools/clang.pod (original)
+++ cfe/branches/Apple/Dib/docs/tools/clang.pod Mon May 11 20:05:22 2009
@@ -179,11 +179,6 @@
Write output to I<file>.
-=item B<-pipe>
-
-FIXME: WHY DOCUMENT THIS.
-Use pipes between commands, when possible.
-
=item B<-print-file-name>=I<file>
Print the full library path of I<file>.
@@ -263,14 +258,41 @@
=head1 ENVIRONMENT
-No environment variables read.
+=over
+
+=item B<TMPDIR>, B<TEMP>, B<TMP>
+
+These environment variables are checked, in order, for the location to
+write temporary files used during the compilation process.
+
+=item B<CPATH>
+
+If this environment variable is present, it is treated as a delimited
+list of paths to be added to the default system include path list. The
+delimiter is the platform dependent delimitor, as used in the I<PATH>
+environment variable.
+
+Empty components in the environment variable are ignored.
+
+=item B<C_INCLUDE_PATH>, B<OBJC_INCLUDE_PATH>, B<CPLUS_INCLUDE_PATH>,
+B<OBJCPLUS_INCLUDE_PATH>
+
+These environment variables specify additional paths, as for CPATH,
+which are only used when processing the appropriate language.
+
+=item B<MACOSX_DEPLOYMENT_TARGET> (Apple only)
+
+If -mmacosx-version-min is unspecified, the default deployment target
+is read from this environment variable.
+
+=back
=head1 BUGS
Clang currently does not have C++ support, and this manual page is incomplete.
To report bugs, please visit L<http://llvm.org/bugs/>. Most bug reports should
-include preprocessed source files (use the B<-E> option) along with information
-to reproduce.
+include preprocessed source files (use the B<-E> option) and the full output of
+the compiler, along with information to reproduce.
=head1 SEE ALSO
More information about the llvm-branch-commits
mailing list