Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
e50f841d
Unverified
Commit
e50f841d
authored
Dec 21, 2021
by
Henry Schreiner
Committed by
GitHub
Dec 21, 2021
Browse files
fix: do not use LTS on mips64 and ppc64le (#3557)
parent
39fbc799
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
tools/pybind11Common.cmake
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)
...
@@ -318,13 +318,21 @@ function(_pybind11_generate_lto target prefer_thin_lto)
set
(
cxx_append
";-fno-fat-lto-objects"
)
set
(
cxx_append
";-fno-fat-lto-objects"
)
endif
()
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
(
_pybind11_return_if_cxx_and_linker_flags_work
(
HAS_FLTO_THIN
"-flto=thin
${
cxx_append
}
"
"-flto=thin
${
linker_append
}
"
HAS_FLTO_THIN
"-flto=thin
${
cxx_append
}
"
"-flto=thin
${
linker_append
}
"
PYBIND11_LTO_CXX_FLAGS PYBIND11_LTO_LINKER_FLAGS
)
PYBIND11_LTO_CXX_FLAGS PYBIND11_LTO_LINKER_FLAGS
)
endif
()
endif
()
if
(
NOT HAS_FLTO_THIN
)
if
(
NOT HAS_FLTO_THIN
AND NOT NO_FLTO_ARCH
)
_pybind11_return_if_cxx_and_linker_flags_work
(
_pybind11_return_if_cxx_and_linker_flags_work
(
HAS_FLTO
"-flto
${
cxx_append
}
"
"-flto
${
linker_append
}
"
PYBIND11_LTO_CXX_FLAGS
HAS_FLTO
"-flto
${
cxx_append
}
"
"-flto
${
linker_append
}
"
PYBIND11_LTO_CXX_FLAGS
PYBIND11_LTO_LINKER_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