Skip to content

Commit d7f56a0

Browse files
changed relative paths to absolute (#696)
1 parent dfb95a9 commit d7f56a0

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ This will add the necessary overrides to `/etc/portage/`, but it won't modify yo
6464
#Set this to "auto" to have gcc determine optimal number of cores (GCC 10+)
6565
NTHREADS="12"
6666

67-
source make.conf.lto
67+
source /etc/portage/make.conf.lto
6868

6969
CFLAGS="-march=native ${CFLAGS} -pipe" #NOTE: Consider using -falign-functions=32 if you use an Intel processor. See issue #164.
7070
CXXFLAGS="${CFLAGS}"
@@ -104,7 +104,7 @@ If you'd like to override the default configuration, you can source `make.conf.l
104104
~~~ bash
105105
NTHREADS="12"
106106

107-
source make.conf.lto.defines
107+
source /etc/portage/make.conf.lto.defines
108108

109109
CFLAGS="-march=native -O3 ${SEMINTERPOS} ${GRAPHITE} ${IPA} ${FLTO} -fuse-linker-plugin -pipe" #NOTE: consider using -falign-functions=32 if you use an Intel processor (Sandy Bridge or later). See issue #164.
110110
CXXFLAGS="${CFLAGS}"

sys-config/ltoize/files/make.conf.lto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#You may also set this to "auto" to have gcc determine optimal number of cores (GCC 10+)
1313
#After this, but before any other variables are defined, source this file directly:
1414

15-
#source make.conf.lto
15+
#source /etc/portage/make.conf.lto
1616

1717
#Then, afterwards, define your CFLAGS with your own options:
1818

@@ -71,7 +71,7 @@
7171
#If you want to cherry pick these settings, source make.conf.lto.defines directly
7272
#and read the comments in that file.
7373

74-
source make.conf.lto.defines
74+
source /etc/portage/make.conf.lto.defines
7575

7676
#Thanks to issue #49, no action necessary for preventing stripping of static libraries
7777

0 commit comments

Comments
 (0)