-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Fix Android/ARM build support #5848
base: dev
Are you sure you want to change the base?
Conversation
Thanks for your contribution @noob6t5 ! |
ifneq ($(shell go env GOARCH), arm) | ||
GOARCH=arm | ||
endif | ||
ifneq ($(shell go env GOOS), android) | ||
GOOS=android | ||
endif |
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.
This doesn’t affect anything, you’re not overwriting anything for the build.
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.
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.
My bad, I thought it was an ifeq
expression.
If that’s the case, it’ll force the build for the android
regardless of the current OS & arch env, which will break the entire workflow.
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.
I think it won't break
Please Can you also take a look into it
Proposed changes
In this PR I have make changes that let's
nuclei
to support running in android.Checklist