Skip to content
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

Update Darwin : change Archflags to POCO_TARGET_OSARCH #4599

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

nickorr
Copy link

@nickorr nickorr commented Jul 9, 2024

I was having issues compiling poco for arm64 on an x86 macOS machine, as a static build. The end result was always x86. Change is from :

ARCHFLAGS ?= -arch $(POCO_HOST_OSARCH)
to
ARCHFLAGS ?= -arch $(POCO_TARGET_OSARCH)

Otherwise this always compiles to the HOST OS instead of target. I think this forces you to set POCO_TARGET_OSARCH on the make command, but I'm not sure how to otherwise set a default.

Also OSFLAGS should be able to be something overwritten from the make command, but not sure how to do that. I was hoping to :

make install -s -j4 POCO_CONFIG=Darwin64-clang-libc++ MACOSX_DEPLOYMENT_TARGET=10.15 POCO_TARGET_OSARCH=arm64

So 10.15 instead of 10.11. Also I think the isysroot part of OSFLAGS can be left out, as it should be part of the default path now.

Otherwise this always compiles to the HOST OS instead of target.
Copy link
Member

@aleks-f aleks-f left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this fails on mac ci

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants