Xcode 8 warning: __textcoal_nt section is out of date

I recently upgraded to Xcode 8 on el-cap.

Today I did "xcode-select -install" and also ran brew to install a couple of commands. I also updated the Podfile and then skewed Xcode 8, which I haven't done for the specific project I'm still working on.

When I compile the sim, I do not receive any warnings. When I Archive (in order to prepare for download to the App Store), I get several of the following:

warning: section "__textcoal_nt" is deprecated .section __TEXT, __textcoal_nt, coalesced, pure_instructions ^ ~~~~~~~~~~~~~~ note: change section name to "__text" .section __TEXT, __textcoal_nt, coalesced, pure_instructions ^ ~~~~~~~~~~~~~~ warning: section "__const_coal" is deprecated .section __TEXT, __const_coal, coalesced ^ ~~~~~~~~~~~~~ note: change section name to "__const" .section __TEXT, __const_coal, coalesced 

Now this only happens when I archive the iOS project. I do not see this for the tvOS project.

Any idea what is going on here? I saw other issues that indicate this error (see: "warning: section" ___ const_coal "" is deprecated "with an error message after upgrading Xcode to the latest version on Mac OS ), but they all seem to want to work exclusively on command line. I want this to work through Xcode. I reset everything, reinstalled Xcode 8 and still have this problem. Here, where my command lines currently indicate:

 $ xcode-select -p /Applications/Xcode.app/Contents/Developer 

Any ideas?

PS (I tried pointing to the CommandTools directory indicated in the answer in the above URL, but that didn't help).

EDIT:

Those who suggested that I install the command line tool and -s for these utilities, I already tried this (see the original post). I did it again to be sure, and it didn't work.

It is established that the files already existed, going to / Library / Developer / CommandLineTools, rebooting and starting Xcode have the same results. The command line path in Xcode still shows this as exporting PATH = "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/ bin: / usr / local / bin: / USR / bin: / bin: / USR / SBIN: / SBIN "

The Xcode preferences in the Locations section appear on the Command Line Tools command line when I switched to / Library / Developer / CommandLineTools on the command line, but still showed the PATH above when I tried to return. It seems like Xcode 8 is simply ignoring it.

+7
ios objective-c xcode
source share

No one has answered this question yet.

See similar questions:

fifteen
"warning: section" __const_coal "outdated" error after updating Xcode to the latest version on Mac OS
one
macOS Sierra: __textcoal__nt is deprecated

or similar:

1348
How to "add existing frames" in Xcode 4?
114
Qt Creator - Project ERROR: Xcode is configured incorrectly. You may need to confirm the license agreement by running / usr / bin / xcodebuild
8
Xcode Convert to ARC, create universal binaries with the error "cannot determine the type of architecture",
3
Problem with CodeSign Pods
3
Unable to archive iOS project
2
Ar is missing after upgrading to Xcode 7
2
Xcode / Applications / Xcode.app / Contents / Developer / usr / bin / momc command error with exit code 1
0
Export Error: Jenkins with Xcode
0
Compiler Warnings with BlocksKit 1.8.1 / Xcode 4.5 / iOS
0
validation error while archiving application using Xcode 6

All Articles