sbsv2/raptor/python/raptor_cli.py
changeset 674 37ee82a83d43
parent 641 8dd670a9f34f
equal deleted inserted replaced
673:7ae5f757318b 674:37ee82a83d43
   163 				help="""Controls how metadata (e.g. bld.infs) are parsed in Parallel.
   163 				help="""Controls how metadata (e.g. bld.infs) are parsed in Parallel.
   164 					Possible values are:
   164 					Possible values are:
   165 					"on"  - Parse bld.infs in parallel (should be faster on clusters/multicore machines)
   165 					"on"  - Parse bld.infs in parallel (should be faster on clusters/multicore machines)
   166 					"slave" - used internally by Raptor 
   166 					"slave" - used internally by Raptor 
   167 					"off" - Parse bld.infs serially 
   167 					"off" - Parse bld.infs serially 
       
   168 				     """)
       
   169 
       
   170 parser.add_option("--use-rsg-casefolding", action="store_true", dest="resource_rsg_casefolding",
       
   171 				help="""This option should not be used permanently to work around case issues on Linux. Case issues need to be fixed and this option should only be used before that has been done.
       
   172 
       
   173 					Generate resource rsg files in lowercase regardless what is specified in mmp file.
   168 				     """)
   174 				     """)
   169 
   175 
   170 parser.add_option("-v","--version",action="store_true",dest="version",
   176 parser.add_option("-v","--version",action="store_true",dest="version",
   171 				help="Print the version number and exit.")
   177 				help="Print the version number and exit.")
   172 
   178 
   243 				 'toolcheck' : Raptor.SetToolCheck,
   249 				 'toolcheck' : Raptor.SetToolCheck,
   244 				 'timing' : Raptor.SetTiming,
   250 				 'timing' : Raptor.SetTiming,
   245 				 'source_target' : Raptor.AddSourceTarget,
   251 				 'source_target' : Raptor.AddSourceTarget,
   246 				 'command_file' : CommandFile,
   252 				 'command_file' : CommandFile,
   247 				 'parallel_parsing' : Raptor.SetParallelParsing,
   253 				 'parallel_parsing' : Raptor.SetParallelParsing,
       
   254 				 'resource_rsg_casefolding' : Raptor.SetRsgCaseFolding,
   248 			 	 'version' : Raptor.PrintVersion
   255 			 	 'version' : Raptor.PrintVersion
   249 				}
   256 				}
   250 
   257 
   251 	# Check if Quiet mode has been specified (otherwise we will make noise)
   258 	# Check if Quiet mode has been specified (otherwise we will make noise)
   252 	if parser.values.quiet:
   259 	if parser.values.quiet: