summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2021-02-07 18:03:38 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2021-02-07 23:17:49 -0500
commit457d78c6e134463434d8489b4a665bd8835bce28 (patch)
tree017de81596842acae318ee39db947bad6f8e1ab6 /SConstruct
parent603a1fa573f05fa38050fb664382d4d3696ec573 (diff)
downloadlighttpd-git-457d78c6e134463434d8489b4a665bd8835bce28.tar.gz
[build] use -pipe with gcc and clang
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index ff0295a9..f8a10cd1 100644
--- a/SConstruct
+++ b/SConstruct
@@ -291,7 +291,7 @@ env['package'] = package
env['version'] = version
if env['CC'] == 'gcc':
## we need x-open 6 and bsd 4.3 features
- env.Append(CCFLAGS = Split('-Wall -O2 -g -W -pedantic -Wunused -Wshadow -std=gnu99'))
+ env.Append(CCFLAGS = Split('-pipe -Wall -O2 -g -W -pedantic -Wunused -Wshadow -std=gnu99'))
env.Append(CPPFLAGS = [
'-D_FILE_OFFSET_BITS=64',