Skip to content

Instantly share code, notes, and snippets.

@Harold2017
Forked from shoogle/qt-without-xcode.md
Created November 22, 2020 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Harold2017/e2716dc495202f3d5b3bb513df61a96e to your computer and use it in GitHub Desktop.
Save Harold2017/e2716dc495202f3d5b3bb513df61a96e to your computer and use it in GitHub Desktop.
Qt without XCode - how to use Qt Creator for macOS software development without installing XCode

Qt without Xcode

How to use Qt Creator for software development on macOS without having to install Xcode

Justification

Qt refuses to install on macOS unless Apple's Xcode is installed beforehand. This is unfortunate because:

  • Xcode is huge!
    • The full IDE is a 5 GB download, and can occupy 20 GB+ of space on disk.
  • Qt doesn't actually need the full IDE.
    • Only Xcode's command line utilities are required for macOS application development¹.
  • Developers may never actually use Xcode.
    • They can program in Qt Creator, like they do in Windows and Linux.

Downloading and installing the command line utilities without Xcode saves time and bandwidth, and means that valuable SSD storage space is kept for better uses.

¹ I believe the full Xcode IDE is required for developing iOS apps with Qt (i.e. apps for iPads and iPhones) but I'm not sure about this as I'm not an iOS developer.

Instructions

Summary

  1. Install Xcode's Command Line Tools (i.e. not Xcode itself).
  • Run in Terminal: xcode-select --install
  1. Install Qt using the Online Installer.
  • Download links:
  • The installer will complain that Xcode is not installed.
    • Keep clicking "OK" until the message goes away permanently (after 12 clicks).
  • Remember where you installed Qt (default location is ~/Qt).
    • If you used a different location then you will need to change subsequent commands accordingly.
  1. Make sure Qt Creator uses the correct C++ Compiler.
  • Launch Qt Creator for the first time from the command line, with the location of the command line tools compilers in ${PATH}:
    • PATH="$(xcode-select -p)/usr/bin:${PATH}" ~/Qt/Qt\ Creator.app/Contents/MacOS/Qt\ Creator
  • Go to Qt Creator > Preferences > Build & Run > Kits and select a build kit (e.g. Desktop Qt 5...).
  • Check that both the C compiler and the C++ compiler are:
    • clang (not gcc)
    • from the Command Line Tools (not the default compilers in /usr/bin)
  • Close Qt Creator.
    • You can launch Qt Creator the normal way in future (e.g. via Spotlight).
  1. If your Qt version is older than Qt 5.9.2 then you need to update some QMake files.
  • Navigate to the directory ~/Qt/<version>/clang_64/mkspecs/features/mac
  • Make a backup copy of the following files before replacing them with newer versions from this git commit:
    • Replace sdk.prf with this newer version.
    • Replace default_pre.prf with this newer version.
    • Make this change to the file default_post.prf:
      • Find the line cache(QMAKE_XCODE_VERSION, stash)
      • Replace it with !isEmpty(QMAKE_XCODE_VERSION): cache(QMAKE_XCODE_VERSION, stash)

All done!

Step-by-step

Step 1 - Download & install Xcode's Command Line Tools

Open a Terminal (press Cmd+Space and type "Terminal") and enter this command:

xcode-select --install

Press the Return key to execute the command.

Step 2 - Download & install Qt and Qt Creator

Packages are available for MacPorts and Homebrew, but it's usually best to get it straight from the source:

The Online Installer is probably the best option for most people.

Tip: when you run the Online Installer it will prompt you to log in with Qt online credentials, but open-source users can skip this step without entering anything.

At a certain point during the install the following error message will appear:

You need to install Xcode version 5.0.0. Download Xcode from https://developer.apple.com/xcode

Press "OK" or ESC to dismiss the dialog. It will come back again. Keep pressing "OK" or ESC and the dialog will eventually go away for good! You have to dismiss the dialog a total of 12 times before you can continue.

Hint: Once Qt is installed you can delete the installer as you won't need it again. If you want to update or remove Qt you have to use the MaintenanceTool in the Qt directory.

Step 3 - Make sure Qt Creator uses the correct C++ Compiler.

Run this command in a Terminal windows to find out where Xcode's Command Line Tools are installed:

xcode-select --print-path

The result will probably be /Library/Developer/CommandLineTools, unless Xcode is installed. Whatever the result, you need to append "/usr/bin" to get something along the lines of:

/Library/Developer/CommandLineTools/usr/bin

Run Qt Creator once with this location stored in your ${PATH} environment variable:

PATH="$(xcode-select -p)/usr/bin:${PATH}" ~/Qt/Qt\ Creator.app/Contents/MacOS/Qt\ Creator

Go to Qt Creator > Preferences > Build & Run > Kits and select a build kit (e.g. Desktop Qt 5...).

Check that the C and C++ compilers are the ones from the command line tools, not the default compilers in /usr/bin. Also check that clang is used for both compilers, not gcc.

Qt Creator will remember the locations of the compilers, so in future you can launch Qt Creator the normal way via Spotlight.

Step 4 - Update some QMake files (only necessary for Qt versions older than Qt 5.9.2)

The xcrun or xcodebuild utilities can be used to show where Xcode's Command Line Tools are installed, but only xcrun works when Xcode itself is not installed.

Qt 5.9.2 and later

Recent Qt versions use xcrun already, so there's nothing left for you to do!

Qt 5.9.1 and older

Older Qt versions try to use xcodebuild to find out where the utilities are installed. This fails with the following error message unless Xcode is installed:

Project ERROR: Could not resolve SDK Path for 'macosx' Error while parsing file <filename.pro>. Giving up.

You need to tell QMake to use xcrun instead.

Open a Terminal and change directory to where the QMake files are stored.

cd ~/Qt # or wherever you installed Qt
cd 5.8 # or whichever version you have installed
cd clang_64/mkspecs/features/mac

Now copy and paste these new commands into the same Terminal window to create backup copies of some files:

function backup_files() {
  for file in "$@"; do
    [[ -f "${file}.backup" ]] || cp "${file}" "${file}.backup"
  done
}
backup_files sdk.prf default_pre.prf default_post.prf

Press the Return key after the final command.

If that all went OK then run these commands to update the files:

url_base='https://raw.githubusercontent.com/qt/qtbase'
commit='fa7626713b3a943609453459190e16c49d61dfd3'
dir='mkspecs/features/mac'
curl -O "${url_base}/${commit}/${dir}/sdk.prf"
curl -O "${url_base}/${commit}/${dir}/default_pre.prf"
old_line='cache(QMAKE_XCODE_VERSION, stash)'
new_line='!isEmpty(QMAKE_XCODE_VERSION): cache(QMAKE_XCODE_VERSION, stash)'
sed "s|^${old_line}\$|${new_line}|" <default_post.prf.backup >default_post.prf

You can see the changes made here if you are interested.

Reusing this material

Referencing

Qt without Xcode how-to by Peter Jonas (shoogle) / CC BY 4.0

License

Creative Commons License

This work is licensed under a Creative Commons Attribution 4.0 International License.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment