time to test
This commit is contained in:
@@ -169,8 +169,8 @@ if 'gcc' in env['TOOLS']:
|
||||
|
||||
# require i686 instructions for atomic<int64_t>, used by boost::lockfree (otherwise lockfree
|
||||
# lists won't actually be lock-free).
|
||||
if env['arch'] == 'x86':
|
||||
env.Append(CCFLAGS = ['-march=i686'])
|
||||
#if env['arch'] == 'x86':
|
||||
# env.Append(CCFLAGS = ['-march=core2'])
|
||||
|
||||
if env['CC'] == 'cl': # MSVC
|
||||
flags = msvc_flags
|
||||
@@ -267,7 +267,7 @@ for plugin in env['plugins']:
|
||||
if env['docs']:
|
||||
asciidoc_cmd = dev.get_asciidoc()
|
||||
if asciidoc_cmd is None:
|
||||
print 'asciidoc not found, docs won\'t be built'
|
||||
print('asciidoc not found, docs won\'t be built')
|
||||
|
||||
else:
|
||||
env['asciidoc_cmd'] = asciidoc_cmd
|
||||
|
||||
@@ -107,7 +107,8 @@ class Dev:
|
||||
gch_tool = 'Gch'
|
||||
else:
|
||||
gch_tool = 'GchSh'
|
||||
exec "env['" + gch_tool + "'] = env." + gch_tool + "(build_path + pch + '.h.gch', pch + '.h')[0]"
|
||||
exec("env['" + gch_tool + "'] = env." +
|
||||
gch_tool + "(build_path + pch + '.h.gch', pch + '.h')[0]")
|
||||
|
||||
# little dance to add the pch object to include paths, while overriding the current directory
|
||||
env['CXXCOM'] = env['CXXCOM'] + ' -include ' + env.Dir(build_path).abspath + '/' + pch + '.h'
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
through strftime with the current time (see any standard c library reference
|
||||
to find out what works...). There's not much logging done at all btw, but
|
||||
plugins can use the logs as well... -->
|
||||
<LogFile type="string">logs/adchpp%Y%m.log</LogFile>
|
||||
<LogFile type="string">/dev/stdout</LogFile>
|
||||
|
||||
<!-- Advanced connection settings (don't change unless you at least think you know what you're doing) -->
|
||||
|
||||
|
||||
Reference in New Issue
Block a user