Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change relative paths to absolute #696

Merged
merged 1 commit into from
Feb 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down Expand Up @@ -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}"
Expand Down
4 changes: 2 additions & 2 deletions sys-config/ltoize/files/make.conf.lto
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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

Expand Down