Fixed -a -m -d

This commit is contained in:
Anthony Scemama 2015-03-16 14:50:57 +01:00
parent 58c302f941
commit 78eb6dae1b
5 changed files with 9 additions and 8 deletions

View File

@ -4,7 +4,7 @@ src:
$(MAKE) -C $@
man:
- $(MAKE) -C $@
- $(MAKE) -C $@ &> /dev/null
all: src man

View File

@ -256,6 +256,7 @@ def print_options():
description = p1.communicate(description)[0]
description = description.replace('\n','\n'.ljust(27))
print ("-%s, --%s"%(k,options[k][0])).ljust(25), description+'\n'
print "\n"
if __name__ == '__main__':
print_options()

View File

@ -29,7 +29,7 @@ from distutils.extension import Extension
from Cython.Distutils import build_ext
import os
to_remove = """cython_setup.py command_line.py""".split()
to_remove = """cython_setup.py version.py command_line.py""".split()
ext_modules = []
files = os.listdir('.')

View File

@ -146,11 +146,11 @@ end subroutine
endif
stack_index(ithread+1) = mod(stack_index(ithread+1)+1,STACKMAX)
irp_stack(stack_index(ithread+1),ithread+1) = irp_where""")
if command_line.do_memory:
txt+="""
print *, 'Allocating irp_stack(',STACKMAX,','nthread,')'
print *, 'Allocating irp_cpu(',STACKMAX,','nthread,')'
print *, 'Allocating stack_index(',nthread,')'"""
# if command_line.do_memory:
# txt+="""
# print *, 'Allocating irp_stack(',STACKMAX,','nthread,')'
# print *, 'Allocating irp_cpu(',STACKMAX,','nthread,')'
# print *, 'Allocating stack_index(',nthread,')'"""
else:
txt = txt.replace("$1","")

View File

@ -1 +1 @@
version = "1.5.0"
version = "1.5.1"