mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-12-21 11:53:32 +01:00
Fixed -a -m -d
This commit is contained in:
parent
58c302f941
commit
78eb6dae1b
2
Makefile
2
Makefile
@ -4,7 +4,7 @@ src:
|
|||||||
$(MAKE) -C $@
|
$(MAKE) -C $@
|
||||||
|
|
||||||
man:
|
man:
|
||||||
- $(MAKE) -C $@
|
- $(MAKE) -C $@ &> /dev/null
|
||||||
|
|
||||||
all: src man
|
all: src man
|
||||||
|
|
||||||
|
@ -256,6 +256,7 @@ def print_options():
|
|||||||
description = p1.communicate(description)[0]
|
description = p1.communicate(description)[0]
|
||||||
description = description.replace('\n','\n'.ljust(27))
|
description = description.replace('\n','\n'.ljust(27))
|
||||||
print ("-%s, --%s"%(k,options[k][0])).ljust(25), description+'\n'
|
print ("-%s, --%s"%(k,options[k][0])).ljust(25), description+'\n'
|
||||||
|
print "\n"
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
print_options()
|
print_options()
|
||||||
|
@ -29,7 +29,7 @@ from distutils.extension import Extension
|
|||||||
from Cython.Distutils import build_ext
|
from Cython.Distutils import build_ext
|
||||||
import os
|
import os
|
||||||
|
|
||||||
to_remove = """cython_setup.py command_line.py""".split()
|
to_remove = """cython_setup.py version.py command_line.py""".split()
|
||||||
ext_modules = []
|
ext_modules = []
|
||||||
|
|
||||||
files = os.listdir('.')
|
files = os.listdir('.')
|
||||||
|
@ -146,11 +146,11 @@ end subroutine
|
|||||||
endif
|
endif
|
||||||
stack_index(ithread+1) = mod(stack_index(ithread+1)+1,STACKMAX)
|
stack_index(ithread+1) = mod(stack_index(ithread+1)+1,STACKMAX)
|
||||||
irp_stack(stack_index(ithread+1),ithread+1) = irp_where""")
|
irp_stack(stack_index(ithread+1),ithread+1) = irp_where""")
|
||||||
if command_line.do_memory:
|
# if command_line.do_memory:
|
||||||
txt+="""
|
# txt+="""
|
||||||
print *, 'Allocating irp_stack(',STACKMAX,','nthread,')'
|
# print *, 'Allocating irp_stack(',STACKMAX,','nthread,')'
|
||||||
print *, 'Allocating irp_cpu(',STACKMAX,','nthread,')'
|
# print *, 'Allocating irp_cpu(',STACKMAX,','nthread,')'
|
||||||
print *, 'Allocating stack_index(',nthread,')'"""
|
# print *, 'Allocating stack_index(',nthread,')'"""
|
||||||
else:
|
else:
|
||||||
txt = txt.replace("$1","")
|
txt = txt.replace("$1","")
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
version = "1.5.0"
|
version = "1.5.1"
|
||||||
|
Loading…
Reference in New Issue
Block a user