forked from ApeWorX/py-solc-x
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for target os different from current os added
- Loading branch information
Showing
2 changed files
with
52 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
from solcx.install import ( | ||
compile_solc, | ||
get_compilable_solc_versions, | ||
get_executable, | ||
get_installable_solc_versions, | ||
get_installed_solc_versions, | ||
get_solcx_install_folder, | ||
import_installed_solc, | ||
install_solc, | ||
install_solc_pragma, | ||
set_target_os, | ||
set_solc_version, | ||
set_solc_version_pragma, | ||
) | ||
from solcx.main import compile_files, compile_source, compile_standard, get_solc_version, link_code | ||
from solcx.main import ( | ||
compile_files, | ||
compile_source, | ||
compile_standard, | ||
get_solc_version, | ||
link_code | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
486481d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adds the feature mentioned in issue ApeWorX#143 of the original
py-solc-x
repo