<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Clearly you can install 9.4.1 on Mojave...and it seems to work at least for trivial code, even compiling to 32 bit:<div class=""><br class=""></div><div class="">sh-3.2$ uname -a<br class="">Darwin bigapple-mojave.pri 18.0.0 Darwin Kernel Version 18.0.0: Wed Aug 22 20:13:40 PDT 2018; root:xnu-4903.201.2~1/RELEASE_X86_64 x86_64<br class="">sh-3.2$ xcode-select --print-path<br class="">/Applications/Xcode_9.4.1.app/Contents/Developer<br class="">sh-3.2$ cat hello.c<br class="">#include <stdio.h><br class="">int<br class="">main(int argc, char **argv)<br class="">{<br class=""><span class="Apple-tab-span" style="white-space:pre">        </span>(void) printf("Hello, world!\n");<br class=""><span class="Apple-tab-span" style="white-space:pre">    </span>return (0);<br class="">}<br class="">sh-3.2$ gcc -m32 hello.c -o hello<br class="">sh-3.2$ file hello<br class="">hello: Mach-O executable i386<br class="">sh-3.2$ ./hello<br class="">Hello, world!<br class=""><br class=""><div>I have both installed, and simply switched the command line instances with</div><div>sudo xcode-select --switch /Applications/Xcode_9.4.1.app/Contents/Developer</div><div>I could switch back with</div><div>sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer</div><div><br class=""></div><div>The sample is a very undemanding C program.  Not sure how well it would work with C++, or Objective C, esp. if it was pushing the limits of what a 32-bit executable was allowed to do on the prior OS release.  And I hadn't been able to figure out how to do a 32-bit build with the GUI, although since I rarely use it, that could well be me, not it.</div><div><br class=""><blockquote type="cite" class=""><div class="">On Sep 27, 2018, at 05:00, Ces VLC <<a href="mailto:cesarillovlc@gmail.com" class="">cesarillovlc@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><br class="">On Wed, Sep 19, 2018 at 7:54 PM Ryan Schmidt <<a href="mailto:ryandesign@macports.org" class="">ryandesign@macports.org</a>> wrote:<br class="">[...]<div class="">> Mojave requires Xcode 10 which contains only the 10.14 SDK.<br class=""><br class=""></div><div class="">Is it really required? Is it not possible to use Xcode 9.4.1 on Mojave? (I'm asking because I thought Xcode had a requirement for the minimum MacOS version it could run on, rather than the maximum MacOS version... obviously with the limit of course that you cannot use new features from SDKs newer than those provided with your Xcode version).</div><div class=""><br class=""></div><div class="">César</div><div class=""> </div><div class=""><br class=""></div><div class=""><br class=""></div></div>
</div></blockquote></div><br class=""></div></body></html>