diff options
author | Andrew Fish <afish@apple.com> | 2014-09-09 21:59:08 +0000 |
---|---|---|
committer | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-09-09 21:59:08 +0000 |
commit | c21e7a7832f76260a27c5bde30f9593355909279 (patch) | |
tree | 3764ae132e6aca4a3bef8461c535bf576879b315 /StdLib/LibC | |
parent | 1e9b2bddff2217eb23bf9eb5d1052ecfebc39204 (diff) | |
download | edk2-platforms-c21e7a7832f76260a27c5bde30f9593355909279.tar.xz |
StdLib: Changes needed to support XCODE5
I had to make the following changes to make this build work: >build -p AppPkg/AppPkg.dsc -a X64 -t XCODE5
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Andrew Fish <afish@apple.com>
Reviewed-by: Daryl McDaniel <daryl.mcdaniel@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16081 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'StdLib/LibC')
-rw-r--r-- | StdLib/LibC/StdLib/Environs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/StdLib/LibC/StdLib/Environs.c b/StdLib/LibC/StdLib/Environs.c index 40807279c9..15221a1260 100644 --- a/StdLib/LibC/StdLib/Environs.c +++ b/StdLib/LibC/StdLib/Environs.c @@ -120,7 +120,7 @@ _Exit(int status) longjmp(gMD->MainExit, 0x55); // Get out of here. longjmp can't return 0. Use 0x55 for a non-zero value.
#ifdef __GNUC__
- __builtin__Exit(status); /* Keep GCC happy - never reached */
+ _Exit(status); /* Keep GCC happy - never reached */
#endif
}
|