Difference between revisions of "Xcode"

From Lazarus wiki
Jump to navigationJump to search
m
Line 8: Line 8:
 
* If after the update to the version your projects are failing to compile and you're using FPC 2.6.4 (or earlier) -> change your debug info type from "Automatic" to "Dwarf". Apple's linker stops supporting .stabs information (which is used by default).  
 
* If after the update to the version your projects are failing to compile and you're using FPC 2.6.4 (or earlier) -> change your debug info type from "Automatic" to "Dwarf". Apple's linker stops supporting .stabs information (which is used by default).  
 
==See Also==
 
==See Also==
 +
* [[GDB on OS X Mavericks and Xcode 5|GDB on OS X]]
 
[[Category:Mac OS X]]
 
[[Category:Mac OS X]]

Revision as of 15:25, 23 September 2015

Xcode (not XCode) is a unified Apple IDE for OSX and iOS development.

It must be installed on OSX in order to get all build utils, which FPC depends on.

Xcode 5.0

Apple removed "gdb" from it's binary utils. Lazarus is currently only able to used "gdb" as an external debugger. "Gdb" should be installed from a third party.

Xcode 7.0

  • If after the update to the version your projects are failing to compile and you're using FPC 2.6.4 (or earlier) -> change your debug info type from "Automatic" to "Dwarf". Apple's linker stops supporting .stabs information (which is used by default).

See Also