Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Olena
olena
Commits
0774ab7c
Commit
0774ab7c
authored
Jun 27, 2014
by
Roland Levillain
Browse files
Use AX_CHECK_COMPILE_FLAG to check compiler support for `-pipe'.
* configure.ac: Here.
parent
c12d92c7
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
0774ab7c
2014-06-27 Roland Levillain <roland@lrde.epita.fr>
Use AX_CHECK_COMPILE_FLAG to check compiler support for `-pipe'.
* configure.ac: Here.
2014-06-27 Roland Levillain <roland@lrde.epita.fr>
Avoid warnings about unused local typedefs.
...
...
configure.ac
View file @
0774ab7c
...
...
@@ -75,10 +75,11 @@ AC_PROG_CXX
# Set `ICPC' to `yes' if the Intel C++ compiler is used.
test $CXX --version 2>/dev/null | grep '\bICC\b' >/dev/null 2>&1 && ICPC=yes
# Try to use pipes between compiler stages to speed the compilation up.
AX_CHECK_COMPILE_FLAG([-pipe], [CXXFLAGS="$CXXFLAGS -pipe"])
# GNU C++ compiler setup.
if test "$GXX" = yes; then
# Speed up compiling times.
CXXFLAGS="$CXXFLAGS -pipe"
# The code generated for mln::data::impl::memcpy__() by g++ 4.2 with
# a high optimization level (`-O3') and without
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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