-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: [toolchain] migrate toolchain detection from shell to python #1007
Conversation
Warning
详情 {
"export": {
"src/scripts/toolchain.sh": {
"a": [
"export TOOLCHAINS=$1"
]
}
}
} |
Warning
详情 {
"export": {
"src/scripts/toolchain.sh": {
"a": [
"export TOOLCHAINS=$1"
]
}
}
} |
Refactored the toolchain detection mechanism by replacing the shell script with a Python implementation for better maintainability and extensibility. - Replaced toolchain.sh with main.py as the detection script - Updated file paths and script execution logic in toolchain.cpp Log: refactor toolchain detection implementation
Warning
详情 {
"export": {
"src/scripts/toolchain.sh": {
"a": [
"export TOOLCHAINS=$1"
]
}
}
} |
deepin pr auto review代码审查意见:
以上是针对代码审查意见的详细说明,希望能够对您的代码改进有所帮助。 |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deepin-mozart, Kakueeen The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/retest |
Warning
详情 {
"export": {
"src/scripts/toolchain.sh": {
"a": [
"export TOOLCHAINS=$1"
]
}
}
} |
Refactored the toolchain detection mechanism by replacing the shell script
with a Python implementation for better maintainability and extensibility.
Log: refactor toolchain detection implementation