From 71ebd0a8e15e40a43bb387ba3435e336fd37a602 Mon Sep 17 00:00:00 2001 From: William McKinnon Date: Sun, 31 Jan 2021 23:58:04 -0500 Subject: [PATCH] changed relative paths to absolute --- README.md | 4 ++-- sys-config/ltoize/files/make.conf.lto | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e9b6f0bd..8c5d0f71 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ This will add the necessary overrides to `/etc/portage/`, but it won't modify yo #Set this to "auto" to have gcc determine optimal number of cores (GCC 10+) NTHREADS="12" -source make.conf.lto +source /etc/portage/make.conf.lto CFLAGS="-march=native ${CFLAGS} -pipe" #NOTE: Consider using -falign-functions=32 if you use an Intel processor. See issue #164. CXXFLAGS="${CFLAGS}" @@ -104,7 +104,7 @@ If you'd like to override the default configuration, you can source `make.conf.l ~~~ bash NTHREADS="12" -source make.conf.lto.defines +source /etc/portage/make.conf.lto.defines 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. CXXFLAGS="${CFLAGS}" diff --git a/sys-config/ltoize/files/make.conf.lto b/sys-config/ltoize/files/make.conf.lto index 23de306f..9bb6e106 100644 --- a/sys-config/ltoize/files/make.conf.lto +++ b/sys-config/ltoize/files/make.conf.lto @@ -12,7 +12,7 @@ #You may also set this to "auto" to have gcc determine optimal number of cores (GCC 10+) #After this, but before any other variables are defined, source this file directly: -#source make.conf.lto +#source /etc/portage/make.conf.lto #Then, afterwards, define your CFLAGS with your own options: @@ -71,7 +71,7 @@ #If you want to cherry pick these settings, source make.conf.lto.defines directly #and read the comments in that file. -source make.conf.lto.defines +source /etc/portage/make.conf.lto.defines #Thanks to issue #49, no action necessary for preventing stripping of static libraries