Dear James, On Sun, 6 Jan 2019 at 01:39, James Linder wrote: > > /Applications/Xcode.app/Contents/Developer/usr/bin/make -f Makefile all > /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ > -c -pipe -stdlib=libc++ -g -std=gnu++11 -arch x86_64 -isysroot > /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk > -mmacosx-version-min=10.12 -Wall -W -fPIC -DQT_DEPRECATED_WARNINGS > -DQT_GUI_LIB -DQT_CORE_LIB -I. -I. > -I/opt/Qt5.12.0/5.12.0/clang_64/lib/QtGui.framework/Headers > -I/opt/Qt5.12.0/5.12.0/clang_64/lib/QtCore.framework/Headers -I. > -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/OpenGL.framework/Headers > > -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/AGL.framework/Headers > -I/opt/Qt5.12.0/5.12.0/clang_64/mkspecs/macx-clang > -F/opt/Qt5.12.0/5.12.0/clang_64/lib -o main.o main.cpp > > > [Haycorn] /Users/jam/nodups [511]% lldb nodups.app/Contents/MacOS/nodups > (lldb) target create "nodups.app/Contents/MacOS/nodups" > warning: (x86_64) > /Users/jam/nodups/nodups.app/Contents/Frameworks/QtGui.framework/Versions/5/QtGui > empty dSYM file detected, dSYM was created with an executable with no debug > info. > warning: (x86_64) > /Users/jam/nodups/nodups.app/Contents/Frameworks/QtCore.framework/Versions/5/QtCore > empty dSYM file detected, dSYM was created with an executable with no debug > info. > Current executable set to 'nodups.app/Contents/MacOS/nodups' (x86_64).
This merely says: .../QtGui empty dSYM file detected that the Qt which you are building against has not been compiled with debug info. Did you compile Qt manually (and in debug mode)? Mojca