Skip to content

make aarch64 package when specified arm64 #5

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

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,15 @@ build: ## Build the Go binary for the specified architecture (e.g., make build A
.PHONY: rpm
rpm: ## Build the RPM package for the specified architecture (e.g., make rpm ARCH=amd64)
@if [ -z "$(ARCH)" ]; then \
echo "ARCH is not set. Using local architecture: $(LOCAL_ARCH)"; \
rpmbuild -bb --define "_topdir $(PWD)/rpmbuild" --define "ARCH $(LOCAL_ARCH)" --define "VERSION $(VERSION)" --target $(LOCAL_ARCH) aproxy.spec; \
echo "ARCH is not set. Using local architecture: $(LOCAL_ARCH)"; \
ARCH="$(LOCAL_ARCH)"; \
elif [ "$(ARCH)" = "arm64" ]; then \
echo "Copying .arm64 binary to .aarch64"; \
cp $(OUT_DIR)/$(BINARY_NAME).arm64 $(OUT_DIR)/$(BINARY_NAME).aarch64; \
rpmbuild -bb --define "_topdir $(PWD)/rpmbuild" --define "ARCH aarch64" --define "VERSION $(VERSION)" --target aarch64 aproxy.spec; \
else \
echo "Using specified architecture: $(ARCH)"; \
rpmbuild -bb --define "_topdir $(PWD)/rpmbuild" --define "ARCH $(ARCH)" --define "VERSION $(VERSION)" --target $(ARCH) aproxy.spec; \
echo "Using specified architecture: $(ARCH)"; \
rpmbuild -bb --define "_topdir $(PWD)/rpmbuild" --define "ARCH $(ARCH)" --define "VERSION $(VERSION)" --target "$(ARCH)" aproxy.spec; \
fi


Expand Down