summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2002-09-02 20:23:30 +0000
committerKen Raeburn <raeburn@mit.edu>2002-09-02 20:23:30 +0000
commit9b1a26b4246666ceebd24a40c2cf69efc01f1e71 (patch)
tree44513bb8d72cf50c1977b65f5db6a12e14fec9b5
parent97c7a78ce920c3c204e3a80ee0e3eb0f3928ba37 (diff)
* build.texinfo (Options to Configure): Update for new "CC=" style options
replacing "--with-cc=" options. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14808 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--doc/ChangeLog5
-rw-r--r--doc/build.texinfo15
2 files changed, 14 insertions, 6 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 0747df535..d47cf019e 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2002-09-02 Ken Raeburn <raeburn@mit.edu>
+
+ * build.texinfo (Options to Configure): Update for new "CC=" style
+ options replacing "--with-cc=" options.
+
2002-07-03 Ezra Peisach <epeisach@bu.edu>
* user-guide.texinfo: Change `@end rawhtml' to `@end html' Texinfo
diff --git a/doc/build.texinfo b/doc/build.texinfo
index 671f55089..cdf80709d 100644
--- a/doc/build.texinfo
+++ b/doc/build.texinfo
@@ -246,11 +246,11 @@ KDC data files, as they will be installed in
@code{LOCALSTATEDIR/krb5kdc}, which is by default
@code{PREFIX/var/krb5kdc}.
-@item --with-cc=COMPILER
+@item CC=COMPILER
Use @code{COMPILER} as the C compiler.
-@item --with-ccopts=FLAGS
+@item CFLAGS=FLAGS
Use @code{FLAGS} as the default set of C compiler flags.
@@ -259,18 +259,18 @@ DECstation you are likely to lose if you pass no flags to cc; md4.c
takes an estimated 3,469 billion years to compile if you provide neither
the @samp{-g} flag nor the @samp{-O} flag to @samp{cc}.
-@item --with-cppopts=CPPOPTS
+@item CPPFLAGS=CPPOPTS
Use @code{CPPOPTS} as the default set of C preprocessor flags. The most
common use of this option is to select certain @code{#define}'s for use
with the operating system's include files.
-@item --with-linker=LINKER
+@item LD=LINKER
Use @code{LINKER} as the default loader if it should be different from C
compiler as specified above.
-@item --with-ldopts=LDOPTS
+@item LDFLAGS=LDOPTS
This option allows one to specify optional arguments to be passed to the
linker. This might be used to specify optional library paths.
@@ -355,9 +355,12 @@ the @samp{suncc} compiler with the optimizer turned on, run the configure
script with the following options:
@example
-% ./configure --with-cc=suncc --with-ccopts=-O
+% ./configure CC=suncc CFLAGS=-O
@end example
+In previous releases, @code{--with-} options were used to specify the
+compiler and linker and their options.
+
@node osconf.h, Shared Library Support, Options to Configure, Building Kerberos V5
@section @file{osconf.h}