[6d0dbc3] | 1 | #####
|
---|
| 2 | #
|
---|
| 3 | # Configuration file for the BLFS module
|
---|
| 4 | #
|
---|
| 5 | # $Id$
|
---|
| 6 | #
|
---|
[f65d3cb] | 7 | # Set default envars used in the build scripts
|
---|
[6d0dbc3] | 8 | #
|
---|
| 9 | #####
|
---|
| 10 |
|
---|
[ecdc3b6] | 11 | #======== Common envars ==========
|
---|
[6d0dbc3] | 12 |
|
---|
[39dc04a] | 13 | #--- The build directory:
|
---|
[1fa0dee] | 14 | # - If JH_BUILD_SUBDIRS is set, this directory contains sub directories
|
---|
[39dc04a] | 15 | # (one for each package), where packages are unpacked, and compiled.
|
---|
[1fa0dee] | 16 | # - If JH_BUILD_SUBDIRS is unset, packages are unpacked, and compiled
|
---|
| 17 | # directly in $JH_BUILD_ROOT.
|
---|
| 18 | export JH_BUILD_ROOT=/sources
|
---|
| 19 | export JH_BUILD_SUBDIRS=1
|
---|
[39dc04a] | 20 |
|
---|
| 21 | #--- The local repository for packages/file:
|
---|
| 22 | # Any missing file will be downloaded and archived either:
|
---|
[1fa0dee] | 23 | # - into a subdirectory (one for each page of the book) of this directory,
|
---|
| 24 | # if JH_SRC_SUBDIRS is set.
|
---|
| 25 | # - directly into this directory if JH_SRC_SUBDIRS is unset.
|
---|
| 26 | # This directory can be the same as $JH_BUILD_ROOT, provided JH_BUILD_SUBDIRS
|
---|
| 27 | # and JH_SRC_SUBDIRS are different.
|
---|
| 28 | export JH_SRC_ARCHIVE=/sources
|
---|
| 29 | unset JH_SRC_SUBDIRS
|
---|
[6d0dbc3] | 30 |
|
---|
[342c862] | 31 | #--- Set a well-known working locale when building software
|
---|
| 32 | # Note that an UTF-8 locale may be needed for some packages,
|
---|
| 33 | # but normally it is set in the package instructions.
|
---|
| 34 | # Furthermore, LANG may be set in /etc/profile, which is
|
---|
[ce99eb6] | 35 | # sourced at the end of this file. Note that LC_ALL takes
|
---|
| 36 | # precedence over LANG. As of {B,}LFS 8.1, this setting is
|
---|
| 37 | # not needed...
|
---|
| 38 | # export LC_ALL=C
|
---|
[342c862] | 39 |
|
---|
[39dc04a] | 40 | #--- Server used if the file isn't found in SRC_DIR,
|
---|
[342c862] | 41 | # and cannot be downloaded from upstream.
|
---|
[6d0dbc3] | 42 | #
|
---|
| 43 | # The server path MUST be set as listed in
|
---|
[342c862] | 44 | # http://www.linuxfromscratch.org/blfs/download.html.
|
---|
| 45 | # Note that despite the name of the variable, it can be an http url.
|
---|
[1fa0dee] | 46 | export JH_FTP_SERVER=http://ftp.osuosl.org/pub/blfs/
|
---|
[f65d3cb] | 47 |
|
---|
[39dc04a] | 48 | #--- Keep the buid directory to examine it:
|
---|
[1fa0dee] | 49 | # If JH_KEEP_FILES is unset, the extracted tarball is removed after build.
|
---|
[39dc04a] | 50 | # Otherwise, the build tree is kept for later study.
|
---|
[1fa0dee] | 51 | #export JH_KEEP_FILES=1
|
---|
| 52 | unset JH_KEEP_FILES
|
---|
[39dc04a] | 53 |
|
---|
[342c862] | 54 | ### Currently not used in scripts ###
|
---|
[e576789] | 55 | # Use a server close to you for Xorg (see http://wiki.x.org/wiki/Mirrors)
|
---|
[342c862] | 56 | # export FTP_X_SERVER=ftp://mirror.cict.fr/x.org/
|
---|
[6f48f76] | 57 |
|
---|
[fdd3b04] | 58 | #======== Optimizations =============
|
---|
| 59 |
|
---|
| 60 | # Global optimization settings can be placed here. This settings can be
|
---|
[342c862] | 61 | # overriden by settings in the packages build scripts.
|
---|
[fdd3b04] | 62 |
|
---|
| 63 | # WARNING: The use of build optimizations may be dangerous.
|
---|
| 64 | # You should know what you are doing and be sure that the
|
---|
| 65 | # optimization settings placed below are what you want.
|
---|
| 66 | # It there are build issues or the system doesn't work as
|
---|
| 67 | # expected, please rebuild without optimizations before
|
---|
| 68 | # asking for support.
|
---|
| 69 |
|
---|
[e576789] | 70 | export MAKEFLAGS="-j5"
|
---|
[fdd3b04] | 71 |
|
---|
[4a33ef0] | 72 | #export CFLAGS="-O3 -pipe"
|
---|
| 73 | #export CXXFLAGS=$CFLAGS
|
---|
| 74 | #export LDFLAGS="-s"
|
---|
[fdd3b04] | 75 |
|
---|
[4a33ef0] | 76 | #export OTHER_CFLAGS=$CFLAGS
|
---|
| 77 | #export OTHER_CXXFLAGS=$CXXFLAGS
|
---|
| 78 | #export OTHER_LDFLAGS=$LDFLAGS
|
---|
[fdd3b04] | 79 |
|
---|
[e576789] | 80 | #======== Environment settings ========
|
---|
| 81 |
|
---|
[342c862] | 82 | # The prefered way to setup environment variables nowadays
|
---|
| 83 | # is to set them in /etc/profile{,.d/*.sh}.
|
---|
| 84 | # It is recommended to source /etc/profile in this file
|
---|
| 85 | # since a package may add some new variables in there,
|
---|
| 86 | # which may be needed later in dependant packages.
|
---|
[e576789] | 87 |
|
---|
| 88 | if [ -r /etc/profile ]; then source /etc/profile; fi
|
---|
[342c862] | 89 |
|
---|
| 90 | #======== Package management ========
|
---|
| 91 |
|
---|
| 92 | # We need the functions in "packInstall.sh" when installing a package,
|
---|
| 93 | # if package management is requested. Note that we have no way to know
|
---|
| 94 | # whether package management is requested for a given build.
|
---|
| 95 | # Furthermore, "sudo -E" exports variables, but not functions from
|
---|
| 96 | # the environment, and sudo needs to be called before porg, due
|
---|
| 97 | # to porg limitations. So we just export the location of the file
|
---|
| 98 | # where the functions are defined, and we'll source it just before
|
---|
| 99 | # installing.
|
---|
| 100 |
|
---|
[1fa0dee] | 101 | export JH_PACK_INSTALL=/blfs_root/packInstall.sh # change as needed
|
---|