make.py: add missing --csr_csv argument

This commit is contained in:
Florent Kermarrec 2014-04-24 22:08:33 +02:00 committed by Sebastien Bourdeauducq
parent 3ab9f234d0
commit 87a78bc059
1 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,8 @@ Load/flash actions use the existing outputs, and do not trigger new builds.
parser.add_argument("-p", "--platform", default=None, help="platform to build for") parser.add_argument("-p", "--platform", default=None, help="platform to build for")
parser.add_argument("-Ot", "--target-option", default=[], nargs=2, action="append", help="set target-specific option") parser.add_argument("-Ot", "--target-option", default=[], nargs=2, action="append", help="set target-specific option")
parser.add_argument("-X", "--external", default="", help="use external directory for targets, platforms and imports") parser.add_argument("-X", "--external", default="", help="use external directory for targets, platforms and imports")
parser.add_argument("--csr_csv", default="csr.csv", help="CSV file to save the CSR map into")
parser.add_argument("-d", "--decorate", default=[], action="append", help="apply simplification decorator to top-level") parser.add_argument("-d", "--decorate", default=[], action="append", help="apply simplification decorator to top-level")
parser.add_argument("-Ob", "--build-option", default=[], nargs=2, action="append", help="set build option") parser.add_argument("-Ob", "--build-option", default=[], nargs=2, action="append", help="set build option")
parser.add_argument("-f", "--flash-proxy-dir", default=None, help="set search directory for flash proxy bitstreams") parser.add_argument("-f", "--flash-proxy-dir", default=None, help="set search directory for flash proxy bitstreams")