Fix compile recent compile issues with gcc 5.5

This commit is contained in:
Marcelo Fernandez 2018-11-12 10:24:44 -03:00
parent baa8678d2a
commit 8705c01f5a
1 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ def configure(env):
env.Append(CCFLAGS=['-pipe'])
env.Append(LINKFLAGS=['-pipe'])
# Check for gcc version > 4 before adding -no-pie
# Check for gcc version > 5 before adding -no-pie
import re
import subprocess
proc = subprocess.Popen([env['CXX'], '--version'], stdout=subprocess.PIPE)
@ -157,7 +157,7 @@ def configure(env):
match = re.search('[0-9][0-9.]*', stdout)
if match is not None:
version = match.group().split('.')
if (version[0] > '4'):
if (version[0] > '5'):
env.Append(CCFLAGS=['-fpie'])
env.Append(LINKFLAGS=['-no-pie'])