Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
e50f841d
Unverified
Commit
e50f841d
authored
Dec 21, 2021
by
Henry Schreiner
Committed by
GitHub
Dec 21, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: do not use LTS on mips64 and ppc64le (#3557)
parent
39fbc799
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
tools/pybind11Common.cmake
+10
-2
No files found.
tools/pybind11Common.cmake
View file @
e50f841d
...
...
@@ -318,13 +318,21 @@ function(_pybind11_generate_lto target prefer_thin_lto)
set
(
cxx_append
";-fno-fat-lto-objects"
)
endif
()
if
(
CMAKE_CXX_COMPILER_ID MATCHES
"Clang"
AND prefer_thin_lto
)
if
(
CMAKE_SYSTEM_PROCESSOR MATCHES
"ppc64le"
OR CMAKE_SYSTEM_PROCESSOR MATCHES
"mips64"
)
set
(
NO_FLTO_ARCH TRUE
)
else
()
set
(
NO_FLTO_ARCH FALSE
)
endif
()
if
(
CMAKE_CXX_COMPILER_ID MATCHES
"Clang"
AND prefer_thin_lto
AND NOT NO_FLTO_ARCH
)
_pybind11_return_if_cxx_and_linker_flags_work
(
HAS_FLTO_THIN
"-flto=thin
${
cxx_append
}
"
"-flto=thin
${
linker_append
}
"
PYBIND11_LTO_CXX_FLAGS PYBIND11_LTO_LINKER_FLAGS
)
endif
()
if
(
NOT HAS_FLTO_THIN
)
if
(
NOT HAS_FLTO_THIN
AND NOT NO_FLTO_ARCH
)
_pybind11_return_if_cxx_and_linker_flags_work
(
HAS_FLTO
"-flto
${
cxx_append
}
"
"-flto
${
linker_append
}
"
PYBIND11_LTO_CXX_FLAGS
PYBIND11_LTO_LINKER_FLAGS
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment