OLD | NEW |
1 # See "man make.conf" for the available options. | 1 # See "man make.conf" for the available options. |
2 | 2 |
3 ACCEPT_KEYWORDS="amd64" | 3 ACCEPT_KEYWORDS="amd64" |
4 CHOST="x86_64-pc-linux-gnu" | 4 CHOST="x86_64-pc-linux-gnu" |
5 CFLAGS="-O2 -pipe" | 5 CFLAGS="-O2 -pipe" |
6 FEATURES="buildpkg -strict" | 6 FEATURES="buildpkg -strict" |
7 | 7 |
8 # Since our portage comes from version control, we redirect distfiles | 8 # Since our portage comes from version control, we redirect distfiles |
9 DISTDIR="/var/lib/portage/distfiles" | 9 DISTDIR="/var/lib/portage/distfiles" |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 PKGDIR="/var/lib/portage/pkgs" | 21 PKGDIR="/var/lib/portage/pkgs" |
22 | 22 |
23 FULL_BINHOST="http://commondatastorage.googleapis.com/chromeos-prebuilt/host/amd
64/full-28.04.11.040331/packages/" | 23 FULL_BINHOST="http://commondatastorage.googleapis.com/chromeos-prebuilt/host/amd
64/full-28.04.11.040331/packages/" |
24 PORTAGE_BINHOST="$FULL_BINHOST" | 24 PORTAGE_BINHOST="$FULL_BINHOST" |
25 | 25 |
26 USE="${USE} -cups hardened cros_host multilib pic pie" | 26 USE="${USE} -cups hardened cros_host multilib pic pie" |
27 | 27 |
28 GENTOO_MIRRORS="http://commondatastorage.googleapis.com/chromeos-mirror/gentoo" | 28 GENTOO_MIRRORS="http://commondatastorage.googleapis.com/chromeos-mirror/gentoo" |
29 GENTOO_MIRRORS="$GENTOO_MIRRORS http://commondatastorage.googleapis.com/chromeos
-localmirror" | 29 GENTOO_MIRRORS="$GENTOO_MIRRORS http://commondatastorage.googleapis.com/chromeos
-localmirror" |
30 | 30 |
| 31 |
| 32 # avoid removing libltdl.la as it is required by some macro files |
| 33 INSTALL_MASK=" |
| 34 /usr/lib/lib[0-9]*.la |
| 35 /usr/lib/lib[a-k]*.la |
| 36 /usr/lib/lib[m-z]*.la |
| 37 /usr/lib/libl[0-9]*.la |
| 38 /usr/lib/libl[a-s]*.la |
| 39 /usr/lib/libl[u-z]*.la |
| 40 /usr/lib/liblt[0-9]*.la |
| 41 /usr/lib/liblt[a-c]*.la |
| 42 /usr/lib/liblt[e-z]*.la |
| 43 /usr/lib/libltd[0-9]*.la |
| 44 /usr/lib/libltd[a-k]*.la |
| 45 /usr/lib/libltd[m-z]*.la |
| 46 /usr/lib/libltdl[0-9]*.la |
| 47 /usr/lib/libltdl[a-z]*.la |
| 48 " |
| 49 |
31 source make.conf.host_setup | 50 source make.conf.host_setup |
OLD | NEW |