In Xcode, click View, Navigators, and Show Report Navigator, then click on the assembly that failed. In the list of build steps, you will see that βuse -v to view the callβ - right-click the expansion icon (next to the error icon).
As a result, the linker call details will be shown.
Of course, the problem is that you are creating an executable file without including a file containing "main". Usually it is created for you and automatically turns on - based on the goal. If you yourself make a goal; you will need main ().
source share