home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / libg++-2.7.1-src.tgz / tar.out / fsf / libg++ / etc / configure.info-2 (.txt) < prev    next >
GNU Info File  |  1996-09-28  |  28KB  |  481 lines

  1. This is Info file configure.info, produced by Makeinfo-1.55 from the
  2. input file ./configure.texi.
  3. START-INFO-DIR-ENTRY
  4. * configure: (configure).        Cygnus configure.
  5. END-INFO-DIR-ENTRY
  6.    This document describes the Cygnus Support version of `configure'.
  7.    Copyright (C) 1991, 1992, 1993 Cygnus Support Permission is granted
  8. to make and distribute verbatim copies of this manual provided the
  9. copyright notice and this permission notice are preserved on all copies.
  10.    Permission is granted to copy and distribute modified versions of
  11. this manual under the conditions for verbatim copying, provided that
  12. the entire resulting derived work is distributed under the terms of a
  13. permission notice identical to this one.
  14.    Permission is granted to copy and distribute translations of this
  15. manual into another language, under the above conditions for modified
  16. versions, except that this permission notice may be stated in a
  17. translation approved by Cygnus Support.
  18. File: configure.info,  Node: Makefile fragments,  Next: Makefile extensions,  Prev: Target,  Up: Using configure
  19. Adding information about local conventions
  20. ==========================================
  21.    If you find that a tool does not get configured to your liking, or if
  22. `configure''s conventions differ from your local conventions, you should
  23. probably consider "site-specific `Makefile' fragments".  See also *Note
  24. Adding site info: Sites.
  25.    These are probably not the right choice for options that can be set
  26. from the `configure' command line or for differences that are host or
  27. target dependent.
  28.    Cygnus `configure' uses three types of `Makefile' fragments.  In a
  29. generated `Makefile' they appear in the order: "target fragment", "host
  30. fragment", and "site fragment".  This allows host fragments to override
  31. target fragments, and site fragments to override both.
  32.    Host-specific `Makefile' fragments conventionally reside in the
  33. `./config/' subdirectory with names of the form `mh-HOSTTYPE'.  They
  34. are used for hosts that require odd options to the standard compiler and
  35. for compile time options based on the host configuration.
  36.    Target-specific `Makefile' fragments conventionally reside in the
  37. `./config/' subdirectory with names of the form `mt-TARGET'.  They are
  38. used for target dependent compile time options.
  39.    Site specific `Makefile' fragments conventionally reside in the
  40. `./config/' subdirectory with names of the form `ms-SITE'.  They are
  41. used to override host- and target-independent compile time options.
  42. Note that you can also override these options on the `make' invocation
  43. line.
  44. File: configure.info,  Node: Makefile extensions,  Prev: Makefile fragments,  Up: Using configure
  45. Extensions to the GNU coding standards
  46. ======================================
  47.    The following additions to the GNU coding standards are required for
  48. Cygnus `configure' to work properly.
  49.    * The `Makefile' must contain exactly one line starting with `####'.
  50.      This line should follow any default macro definitions but precede
  51.      any rules.  Host, target, and site-specific `Makefile' fragments
  52.      will be inserted immediately after this line.  If the line is
  53.      missing, the fragments will not be inserted.
  54.    * Cygnus adds the following targets to each `Makefile'.  Their
  55.      existence is not required for Cygnus `configure', but they are
  56.      documented here for completeness.
  57.     `info'
  58.           Build all info files from texinfo source.
  59.     `install-info'
  60.           Install all info files.
  61.     `clean-info'
  62.           Remove all info files and any intermediate files that can be
  63.           generated from texinfo source.
  64.     `Makefile'
  65.           Calls `./config.status' to rebuild the `Makefile' in this
  66.           directory.
  67.    * The following `Makefile' targets have revised semantics:
  68.     `install'
  69.           Should *not* depend on the target `all'.  If the program is
  70.           not already built, `make install' should fail.  This allows
  71.           you to install programs even when `make' would otherwise
  72.           determine them to be out of date.  This can happen, for
  73.           example, when the result of a `make all' is transported via
  74.           tape to another machine for installation.
  75.     `clean'
  76.           Should remove any file that can be regenerated by the
  77.           `Makefile', excepting only the `Makefile' itself, and any
  78.           links created by `configure'.  That is, `make all clean'
  79.           should return all directories to their original condition.
  80.           If this is not done, then the command sequence
  81.                configure HOST1 ; make all install clean ;
  82.                configure HOST2 ; make all install
  83.           will fail because of intermediate files intended for HOST1.
  84.    * Cygnus adds the following macros to all `Makefile.in' files, but
  85.      you are not required to use them to run Cygnus `configure'.
  86.     `docdir'
  87.           The directory in which to install any documentation that is
  88.           not either a `man' page or an `info' file.  For `man' pages,
  89.           see `mandir'; for `info', see `infodir'.
  90.     `includedir'
  91.           The directory in which to install any header files that
  92.           should be made available to users.  This is distinct from the
  93.           `gcc' include directory, which is intended for `gcc' only.
  94.           Files in `includedir' may be used by `cc' as well.
  95.    * The following macros have revised semantics.  Most of them describe
  96.      installation directories; see also *Note Full description of all
  97.      installation subdirectories: Install details.
  98.     `datadir'
  99.           is used for host independent data files.
  100.     `mandir'
  101.           The default path for `mandir' depends on `prefix'.
  102.     `infodir'
  103.           The default path for `infodir' depends on `prefix'.
  104.     `BISON'
  105.           is assumed to have a `yacc' calling convention.  To use GNU
  106.           `bison', use `BISON=bison -y'.
  107.    * Each Cygnus `Makefile' also conforms to one additional restriction:
  108.      When libraries are installed, the line containing the call to
  109.      `INSTALL_DATA' should always be followed by a line containing a
  110.      call to `RANLIB' on the installed library.  This is to accommodate
  111.      systems that use `ranlib'.  Systems that do not use `ranlib' can
  112.      set `RANLIB' to "`echo'" in a host specific `Makefile' fragment.
  113. File: configure.info,  Node: Porting,  Next: Variables Index,  Prev: Using configure,  Up: Top
  114. Porting with `configure'
  115. ************************
  116.    This section explains how to add programs, host and target
  117. configuration names, and site-specific information to Cygnus
  118. `configure'.
  119. * Menu:
  120. * Programs::               Adding configure to new programs
  121. * Hosts and targets::      Adding hosts and targets
  122. * Sites::                  Adding site info
  123. File: configure.info,  Node: Programs,  Next: Hosts and targets,  Up: Porting
  124. Adding `configure' to new programs
  125. ==================================
  126.    If you are writing a new program, you probably shouldn't worry about
  127. porting or configuration issues until it is running reasonably on some
  128. host.  Then refer back to this section.
  129.    If your program currently has a `configure' script that meets the GNU
  130. standards (*note How Configuration Should Work:
  131. (standards)Configuration., please do not add Cygnus `configure'.  It
  132. should be possible to add this program without change to a Cygnus
  133. `configure' style source tree.
  134.    If the program is not target dependent, please consider using
  135. `autoconf' instead of Cygnus `configure'.  `autoconf' is available from
  136. the Free Software Foundation; it is a program which generates an
  137. executable shell script called `configure' by automatically finding
  138. information on the system to be configured on and embedding this
  139. information in the shell script.  `configure' scripts generated by
  140. `autoconf' require no arguments, and accept the same options as Cygnus
  141. `configure'.  For detailed instructions on using `autoconf', see *Note
  142. How to organize and produce Autoconf scripts: (autoconf)Making
  143. configure Scripts.
  144.    To add Cygnus `configure' to an existing program, do the following:
  145. *Make sure the `Makefile' conforms to the GNU standard
  146.      The coding standard for writing a GNU `Makefile' is described in
  147.      *Note Makefile Conventions: (standards)Makefiles.  For technical
  148.      information on writing a `Makefile', see *Note Writing Makefiles:
  149.      (make)Makefiles.
  150. *Add Cygnus extensions to the `Makefile'
  151.      These are described in *Note Extensions to the GNU coding
  152.      standards: Makefile extensions.
  153. *Collect package specific definitions in a single file
  154.      Many packages are best configured using a common `Makefile'
  155.      fragment which is included by all of the makefiles in the
  156.      different directories of the package.  In order to accomplish
  157.      this, set the variable `package_makefile_fragment' to the name of
  158.      the file.  It will be inserted into the final `Makefile' before
  159.      the target-specific fragment.
  160. *Move host support from `Makefile' to fragments
  161.      This usually involves finding sections of the `Makefile' that say
  162.      things like "uncomment these lines for host HOSTTYPE" and moving
  163.      them to a new file called `./config/mh-HOSTTYPE'. For more
  164.      information, see *Note Adding hosts and targets: Hosts and targets.
  165. *Choose defaults
  166.      If the program has compile-time options that determine the way the
  167.      program should behave, choose reasonable defaults and make these
  168.      `Makefile' variables.  Be sure the variables are assigned their
  169.      default values before the `####' line so that site-specific
  170.      `Makefile' fragments can override them (*note Extensions to the
  171.      GNU coding standards: Makefile extensions.).
  172. *Locate configuration files
  173.      If there is configuration information in header files or source
  174.      files, separate it in such a way that the files have generic
  175.      names.  Then move the specific instances of those files into the
  176.      `./config/' subdirectory.
  177. *Separate host and target information
  178.      Some programs already have this information separated.  If yours
  179.      does not, you will need to separate these two kinds of
  180.      configuration information.  "Host specific" information is the
  181.      information needed to compile the program.  "Target specific"
  182.      information is information on the format of data files that the
  183.      program will read or write.  This information should live in
  184.      separate files in the `./config/' subdirectory with names that
  185.      reflect the configuration for which they are intended.
  186.      At this point you might skip this step and simply move on.  If you
  187.      do, you should end up with a program that can be configured only
  188.      to build "native" tools, that is, tools for which the host system
  189.      is also the target system.  Later, you could attempt to build a
  190.      cross tool and separate out the target-specific information by
  191.      figuring out what went wrong.  This is often simpler than combing
  192.      through all of the source code.
  193. *Write `configure.in'
  194.      Usually this involves writing shell script fragments to map from
  195.      canonical configuration names into the names of the configuration
  196.      files.  These files will then be linked at configure time from the
  197.      specific instances of those files in `./config' to files in the
  198.      build directory with more generic names.  (See also *Note Build
  199.      directories: Build directories.)  The format of `configure.in' is
  200.      described in *Note The `configure.in' input file: configure.in.
  201. *Rename `Makefile' to `Makefile.in'
  202.    At this point you should have a program that can be configured using
  203. Cygnus `configure'.
  204. File: configure.info,  Node: Hosts and targets,  Next: Sites,  Prev: Programs,  Up: Porting
  205. Adding hosts and targets
  206. ========================
  207.    To add a host or target to a program that already uses Cygnus
  208. `configure', do the following.
  209.    * Make sure the new configuration name is represented in
  210.      `config.sub'.  If not, add it.  For more details, see the comments
  211.      in the shell script `config.sub'.
  212.    * If you are adding a host configuration, look in `configure.in', in
  213.      the "per-host" section.  Make sure that your configuration name is
  214.      represented in the mapping from host configuration names to
  215.      configuration files.  If not, add it.  Also see *Note The
  216.      `configure.in' input file: configure.in.
  217.    * If you are adding a target configuration, look in `configure.in',
  218.      in the "per-target" section.  Make sure that your configuration
  219.      name is represented in the mapping from target configuration names
  220.      to configuration files.  If not, add it.  Also see *Note The
  221.      `configure.in' input file: configure.in.
  222.    * Look in `configure.in' for the variables `files', `links',
  223.      `host_makefile_frag', and `target_makefile_frag'.  The values
  224.      assigned to these variables are the names of the configuration
  225.      files, (relative to `srcdir') that the program uses.  Make sure
  226.      that copies of the files exist for your host.  If not, create
  227.      them.  See also *Note Variables available to `configure.in':
  228.      configure variables.
  229.    This should be enough to `configure' for a new host or target
  230. configuration name.  Getting the program to compile and run properly
  231. represents the hardest work of any port.
  232. File: configure.info,  Node: Sites,  Prev: Hosts and targets,  Up: Porting
  233. Adding site info
  234. ================
  235.    If some of the `Makefile' defaults are not right for your site, you
  236. can build site-specific `Makefile' fragments.  To do this, do the
  237. following.
  238.    * Choose a name for your site.  It must currently be less than
  239.      eleven characters.
  240.    * If the program source does not have a `./config/' subdirectory,
  241.      create it.
  242.    * Create a file called `./config/ms-SITE' where SITE is the name of
  243.      your site.  In it, set whatever `Makefile' variables you need to
  244.      override to match your site's conventions.
  245.    * Configure the program with:
  246.           configure ... --site=SITE
  247. File: configure.info,  Node: Variables Index,  Next: Concept Index,  Prev: Porting,  Up: Top
  248. Variable Index
  249. **************
  250. * Menu:
  251. * bindir:                               Install details.
  252. * configdirs:                           configure variables.
  253. * disable-FEATURE:                      Invoking configure.
  254. * docdir:                               Install details.
  255. * enable-FEATURE:                       Invoking configure.
  256. * exec-prefix:                          Invoking configure.
  257. * exec_prefix:                          exec_prefix.
  258. * exec_prefix:                          Install details.
  259. * files:                                configure variables.
  260. * floating_point:                       configure variables.
  261. * gas:                                  configure variables.
  262. * host:                                 configure variables.
  263. * host_cpu:                             configure variables.
  264. * host_makefile_frag:                   configure variables.
  265. * host_os:                              configure variables.
  266. * host_vendor:                          configure variables.
  267. * includedir:                           Install details.
  268. * infodir:                              Install details.
  269. * libdir:                               Install details.
  270. * links:                                configure variables.
  271. * Makefile:                             configure variables.
  272. * manNdir:                              Install details.
  273. * manNext:                              Install details.
  274. * mandir:                               Install details.
  275. * nfp:                                  Invoking configure.
  276. * norecursion:                          Invoking configure.
  277. * package_makefile_frag:                configure variables.
  278. * prefix:                               prefix.
  279. * prefix:                               Install details.
  280. * prefix:                               Invoking configure.
  281. * program-prefix:                       Invoking configure.
  282. * removing:                             configure variables.
  283. * rm:                                   Invoking configure.
  284. * site:                                 Invoking configure.
  285. * site_makefile_frag:                   configure variables.
  286. * srcdir:                               configure variables.
  287. * srcdir:                               What configure does.
  288. * srcdir:                               Invoking configure.
  289. * srcname:                              configure variables.
  290. * srctrigger:                           configure variables.
  291. * subdirs:                              configure variables.
  292. * target:                               Invoking configure.
  293. * target:                               configure variables.
  294. * target_cpu:                           configure variables.
  295. * target_makefile_frag:                 configure variables.
  296. * target_os:                            configure variables.
  297. * target_vendor:                        configure variables.
  298. * tmpdir:                               Invoking configure.
  299. * verbose:                              Invoking configure.
  300. * with-PACKAGE:                         Invoking configure.
  301. * without-PACKAGE:                      Invoking configure.
  302. File: configure.info,  Node: Concept Index,  Prev: Variables Index,  Up: Top
  303. Concept Index
  304. *************
  305. * Menu:
  306. * -disable-FEATURE:                     Invoking configure.
  307. * -enable-FEATURE:                      Invoking configure.
  308. * -exec-prefix:                         Invoking configure.
  309. * -help:                                Invoking configure.
  310. * -nfp:                                 Invoking configure.
  311. * -norecursion:                         Invoking configure.
  312. * -prefix:                              Invoking configure.
  313. * -program-prefix:                      Invoking configure.
  314. * -rm:                                  Invoking configure.
  315. * -site:                                Invoking configure.
  316. * -srcdir:                              Invoking configure.
  317. * -target:                              Invoking configure.
  318. * -tmpdir:                              Invoking configure.
  319. * -verbose:                             Invoking configure.
  320. * -version:                             Invoking configure.
  321. * -with-PACKAGE:                        Invoking configure.
  322. * -without-PACKAGE:                     Invoking configure.
  323. * -s:                                   Invoking configure.
  324. * -v:                                   Invoking configure.
  325. * .gdbinit:                             What configure does.
  326. * autoconf:                             Programs.
  327. * bindir:                               Install details.
  328. * config.guess:                         config.guess.
  329. * config.guess definition:              What configure really does.
  330. * config.status:                        config.status.
  331. * config.status:                        What configure does.
  332. * config.status definition:             What configure really does.
  333. * config.sub definition:                What configure really does.
  334. * config/ subdirectory:                 What configure really does.
  335. * configdirs:                           configure variables.
  336. * configure.in:                         configure.in.
  337. * configure.in definition:              What configure really does.
  338. * configure back end:                   What configure really does.
  339. * configure details:                    What configure really does.
  340. * disable-FEATURE option:               Invoking configure.
  341. * docdir:                               Install details.
  342. * enable-FEATURE option:                Invoking configure.
  343. * exec-prefix option:                   Invoking configure.
  344. * exec_prefix:                          Install details.
  345. * floating_point:                       configure variables.
  346. * help option:                          Invoking configure.
  347. * host:                                 configure variables.
  348. * includedir:                           Install details.
  349. * infodir:                              Install details.
  350. * libdir:                               Install details.
  351. * Makefile.in definition:               What configure really does.
  352. * Makefile extensions:                  Makefile extensions.
  353. * Makefile fragments:                   Makefile fragments.
  354. * Makefile generation:                  Makefile generation.
  355. * Makefile generation:                  What configure does.
  356. * manNdir:                              Install details.
  357. * manNext:                              Install details.
  358. * mandir:                               Install details.
  359. * nfp option:                           Invoking configure.
  360. * nfp option:                           configure variables.
  361. * norecursion option:                   Invoking configure.
  362. * prefix:                               Install details.
  363. * prefix option:                        Invoking configure.
  364. * prefix option:                        prefix.
  365. * program-prefix option:                Invoking configure.
  366. * rm option:                            Invoking configure.
  367. * rm option:                            configure variables.
  368. * site option:                          Invoking configure.
  369. * srcdir:                               configure variables.
  370. * srcdir:                               What configure does.
  371. * srcdir option:                        Invoking configure.
  372. * srcname:                              configure variables.
  373. * srctrigger:                           configure variables.
  374. * subdirs:                              configure variables.
  375. * s option:                             Invoking configure.
  376. * target:                               configure variables.
  377. * target option:                        Invoking configure.
  378. * tmpdir option:                        Invoking configure.
  379. * verbose option:                       Invoking configure.
  380. * v option:                             Invoking configure.
  381. * with-PACKAGE option:                  Invoking configure.
  382. * with-gnu-as option:                   configure variables.
  383. * without-PACKAGE option:               Invoking configure.
  384. * configure.in interface:               configure variables.
  385. * host shell-script fragment:           per-host.
  386. * per-host section:                     per-host.
  387. * per-host section:                     configure.in.
  388. * per-invocation section:               configure.in.
  389. * per-invocation section:               Declarations.
  390. * per-target section:                   configure.in.
  391. * per-target section:                   per-target.
  392. * post-target section:                  configure.in.
  393. * post-target section:                  post-target.
  394. * Abbreviating option names:            Invoking configure.
  395. * Adding configure to new programs:     Programs.
  396. * Adding hosts and targets:             Hosts and targets.
  397. * Adding local info:                    Makefile fragments.
  398. * Adding site info:                     Sites.
  399. * Adding site info:                     Makefile fragments.
  400. * Behind the scenes:                    What configure really does.
  401. * BISON:                                Makefile extensions.
  402. * Build directories:                    What configure does.
  403. * Build directories:                    Build directories.
  404. * Build variables:                      Build variables.
  405. * Building for multiple hosts:          Build directories.
  406. * Building for multiple targets:        Build directories.
  407. * Canonical "triple":                   configure variables.
  408. * Canonical "triple":                   configure variables.
  409. * Changing the install directory:       prefix.
  410. * clean:                                Makefile extensions.
  411. * clean-info:                           Makefile extensions.
  412. * Coding standards extensions:          Makefile extensions.
  413. * configure variables:                  configure variables.
  414. * Configuring for multiple hosts:       exec_prefix.
  415. * Cygnus extensions:                    Makefile extensions.
  416. * Cygnus Support Developer's Kit:       What configure does.
  417. * Cygnus Support Developer's Kit:       Build variables.
  418. * datadir:                              Makefile extensions.
  419. * Declarations section:                 Declarations.
  420. * Default configuration:                Makefile generation.
  421. * Detailed usage:                       Using configure.
  422. * docdir:                               Makefile extensions.
  423. * Example configure.in:                 Example.
  424. * Example session:                      Build directories.
  425. * Example session:                      Build directories.
  426. * Example session:                      exec_prefix.
  427. * Example session:                      Build variables.
  428. * Example session:                      Makefile extensions.
  429. * Example session:                      What configure really does.
  430. * Example session:                      Sites.
  431. * Example session:                      Invoking configure.
  432. * Example session:                      Invoking configure.
  433. * For each invocation:                  Declarations.
  434. * Host:                                 Host.
  435. * Host-specific instructions:           per-host.
  436. * Hosts and targets:                    Hosts and targets.
  437. * includedir:                           Makefile extensions.
  438. * info:                                 Makefile extensions.
  439. * infodir:                              Makefile extensions.
  440. * install:                              Makefile extensions.
  441. * Install details:                      Install details.
  442. * Install locations:                    Install locations.
  443. * install-info:                         Makefile extensions.
  444. * Installation subdirectories:          Install details.
  445. * Installing host-independent files:    exec_prefix.
  446. * Introduction:                         What configure does.
  447. * Invoking configure:                   Invoking configure.
  448. * Local conventions:                    Makefile fragments.
  449. * Makefile:                             Makefile extensions.
  450. * mandir:                               Makefile extensions.
  451. * Minimal configure.in example:         Minimal.
  452. * Object directories:                   Build directories.
  453. * Other files:                          What configure really does.
  454. * Overview:                             What configure does.
  455. * Porting with configure:               Porting.
  456. * Post-target shell-script fragment:    post-target.
  457. * Recursion:                            What configure does.
  458. * Sample configure.in:                  Example.
  459. * Sharing host-independent files:       exec_prefix.
  460. * Sites:                                Sites.
  461. * Subdirectories:                       Install details.
  462. * Symbolic links:                       What configure does.
  463. * Symbolic links:                       configure variables.
  464. * Symbolic links:                       configure variables.
  465. * Target:                               Target.
  466. * target shell-script fragment:         per-target.
  467. * Target-specific instructions:         per-target.
  468. * The exec_prefix directory:            exec_prefix.
  469. * Truncating option names:              Invoking configure.
  470. * Usage:                                Invoking configure.
  471. * Usage:                                Invoking configure.
  472. * Usage: detailed:                      Using configure.
  473. * Using configure:                      Using configure.
  474. * Variables:                            Build variables.
  475. * Verbose Output:                       Invoking configure.
  476. * version:                              Invoking configure.
  477. * version:                              Invoking configure.
  478. * What configure does:                  What configure does.
  479. * What configure really does:           What configure really does.
  480. * Where to install:                     Install locations.
  481.