off-topic

https://github.com/clojurians/community-development/blob/master/Code-of-Conduct.md Clojurians Slack Community Code of Conduct. Searchable message archives are at https://clojurians-log.clojureverse.org/
borkdude 2020-09-18T19:04:23.003100Z

Does compiling a command line tool with a newer XCode version have any impact on being able to run that binary on older macOS versions?

Stefan 2020-09-22T06:06:17.060500Z

Indeed they call it “deployment target” in Xcode. I would not hesitate to upgrade Xcode if the deployment target is set correctly.

borkdude 2020-09-22T06:43:25.062300Z

But how to set this deployment target on CircleCi? I can only set the Xcode version in yaml

kirill.salykin 2020-09-22T06:48:05.062500Z

Shouldnt there be some kind of xcode project configuration file?

kirill.salykin 2020-09-22T06:54:34.062700Z

I am not much familiar with xcode stack, but quick googling mentions something like project.pbxproj?

kirill.salykin 2020-09-22T06:55:31.063200Z

IPHONEOS_DEPLOYMENT_TARGET seems similar to what you are looking for?

kirill.salykin 2020-09-22T06:55:45.063900Z

MACOSX_DEPLOYMENT_TARGET

borkdude 2020-09-22T06:56:36.065200Z

Well I don’t build for IPhone and I do t have an XCode project. GraalVM just uses the C++ compiler that comes with it

borkdude 2020-09-22T06:57:04.065600Z

I’ll check it out thanks

kirill.salykin 2020-09-22T06:57:20.066100Z

maybe this helps?

borkdude 2020-09-22T06:58:33.066500Z

Thanks, yes

borkdude 2020-09-18T19:04:38.003300Z

E.g. compiling with XCode 12

kirill.salykin 2020-09-18T19:31:50.004Z

might be related to transition to arm in next mac os?

borkdude 2020-09-18T19:33:05.004200Z

no, I'm just wondering about backward compatibility when I bump my XCode version in circleci's config

jimmy 2020-09-18T19:38:04.004400Z

(I don't know how to do this, just know you can) You can set a minimal compatible version no matter which xcode you are on.

JL 2020-09-18T20:42:41.004800Z

Absolutly it does @borkdude https://en.wikipedia.org/wiki/Xcode#8.x_series

JL 2020-09-18T20:43:19.005300Z

one of the reasons I stay out of the mobile market ; ]

borkdude 2020-09-18T21:02:54.006Z

@thdm It says: min macOS to run xcode, but not min macOS on which the compiled target can run