mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			832 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			832 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python
 | |
| 
 | |
| import sys
 | |
| import glob
 | |
| import subprocess
 | |
| import json
 | |
| 
 | |
| solc = sys.argv[1]
 | |
| report = open("report.txt", "wb")
 | |
| 
 | |
| for optimize in [False, True]:
 | |
|     for f in sorted(glob.glob("*.sol")):
 | |
|         args = [solc, '--combined-json', 'bin,metadata', f]
 | |
|         if optimize:
 | |
|             args += ['--optimize']
 | |
|         proc = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
 | |
|         (out, err) = proc.communicate()
 | |
|         try:
 | |
|             result = json.loads(out.strip())
 | |
|             for contractName in sorted(result['contracts'].keys()):
 | |
|                 report.write(contractName + ' ' + result['contracts'][contractName]['bin'] + '\n')
 | |
|                 report.write(contractName + ' ' + result['contracts'][contractName]['metadata'] + '\n')
 | |
|         except:
 | |
|             report.write(f + ": ERROR\n")
 |