Kaydet (Commit) cf19d21c authored tarafından Suleyman Poyraz's avatar Suleyman Poyraz

Update setup.py, inary/actionsapi/variables.py, config/inary.conf-x86_64, inary/configfile.py files

üst 53b4068b
......@@ -8,9 +8,9 @@ host = x86_64-pc-linux-gnu
cc = %(host)s-gcc
cxx = %(host)s-g++
compressionlevel = 9
enableSandbox = True
enableSandbox = False
fallback = http://source.sulin.org/archives
generateDebug = False
generateDebug = True
jobs = -j5
ldflags = -Wl,-O1 -Wl,-z,relro -Wl,--hash-style=gnu -Wl,--as-needed -Wl,--sort-common
#makeflags =
......@@ -40,7 +40,7 @@ bandwidth_limit = 0
allow_docs=True
allow_pages=True
allow_dbginfo=True
allow_static=False
allow_static=True
destinationdirectory = /
distribution = Sulin
distribution_release = 2019
......
......@@ -42,7 +42,7 @@ def exportFlags():
# http://liste.pardus.org.tr/gelistirici/2009-January/016442.html
os.environ['CC'] = "{}-gcc".format(values.build.host)
os.environ['CXX'] = "{}-g++".format(values.build.host)
os.environ['LD'] = "{}-ld".format(values.build.host)
os.environ['LD'] = "ld"
class Env(object):
"""General environment variables used in actions API"""
......
......@@ -91,8 +91,8 @@ class BuildDefaults:
build_host = "localhost"
host = "x86_64-linux-gnu"
jobs = "-j1"
generateDebug = False
enableSandbox = True
generateDebug = True
enableSandbox = False
cflags = "-mtune=generic -O2 -pipe -fomit-frame-pointer -fstack-protector -D_FORTIFY_SOURCE=2"
cxxflags = "-mtune=generic -O2 -pipe -fomit-frame-pointer -fstack-protector -D_FORTIFY_SOURCE=2"
ldflags = "-Wl,-O1 -Wl,-z,relro -Wl,--hash-style=gnu -Wl,--as-needed -Wl,--sort-common"
......@@ -100,7 +100,7 @@ class BuildDefaults:
allow_docs=True
allow_pages=True
allow_dbginfo=True
allow_static=False
allow_static=True
buildhelper = None
compressionlevel = 9
fallback = "http://www.sulin.com.tr/pub"
......
......@@ -202,8 +202,7 @@ setup(name="inary",
'inary.libraries',
'inary.operations',
'inary.sxml',
'inary.scenarioapi',
'inary.util'],
'inary.scenarioapi'],
cmdclass = {'build' : Build,
'build_po' : BuildPo,
'install' : Install,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment