Re: [Interest] Qt-5.12.3: Compile errors passing -j to make on macos

2019-06-15 Thread Patrick Stinson
Hmm, seems that some of these errors were actually a part of my local shell ENV which sets the following variables (the SYSROOT dir was empty, though): export SYSROOT=$HOME/dev/vendor/sysroot-dev export DYLD_LIBRARY_PATH=$SYSROOT/lib export PATH=$SYSROOT/bin:$SYSROOT/qt/bin:$PATH export PYTHONPAT

Re: [Interest] Qt-5.12.3: Compile errors passing -j to make on macos

2019-06-15 Thread Thiago Macieira
On Saturday, 15 June 2019 00:52:44 PDT Patrick Stinson wrote: > thread/qatomic.cpp:1624:4: error: "Q_ATOMIC_INT64_IS_SUPPORTED must be > defined on a 64-bit platform" And this same build works without -j? Can you try it with -no-pch and see if it makes a difference? -- Thiago Macieira - thiago.

Re: [Interest] Qt-5.12.3: Compile errors passing -j to make on macos

2019-06-15 Thread Steve Atkins
> On Jun 15, 2019, at 8:49 AM, Patrick Stinson wrote: > > Has anyone else run into compile errors related to integer sizes on a 64 bit > platform when passing -jn to make on macos? A build will be preceding just > fine with one process, but when I increase the number it immediately bails > w

Re: [Interest] Qt-5.12.3: Compile errors passing -j to make on macos

2019-06-15 Thread Patrick Stinson
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -c -include.pch/Qt5Core_debug/c++_x86_64 -pipe -stdlib=libc++ -g -std=c++1y -fapplication-extension -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Develope

[Interest] Qt-5.12.3: Compile errors passing -j to make on macos

2019-06-15 Thread Patrick Stinson
Has anyone else run into compile errors related to integer sizes on a 64 bit platform when passing -jn to make on macos? A build will be preceding just fine with one process, but when I increase the number it immediately bails with compile errors. Thanks! ___