Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

[Bug 18766] Switch MacOS builds to 64-bit only #4867

Open
wants to merge 6 commits into
base: develop
Choose a base branch
Loading
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Drop support for 32-bit MacOS engines
  • Loading branch information
livecodefraser committed Nov 11, 2016
commit 1dc8b0b4142e3b1e3ca34fdd2cfe801819a42537
2 changes: 1 addition & 1 deletion 2 config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ if test -z "$TARGET_ARCH"; then

mac*|ios*)
case ${XCODE_TARGET_SDK} in
macosx*) TARGET_ARCH="i386" ;;
macosx*) TARGET_ARCH="x86_64" ;;
iphoneos5* | \
iphoneos6* | \
iphoneos7*) TARGET_ARCH="armv7" ;;
Expand Down
6 changes: 3 additions & 3 deletions 6 config/mac.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
{
'xcode_settings':
{
'ARCHS': 'i386 x86_64',
'ARCHS': 'x86_64',
'ONLY_ACTIVE_ARCH': 'YES',
'GCC_OPTIMIZATION_LEVEL': '0',
},
Expand All @@ -206,7 +206,7 @@
{
'xcode_settings':
{
'ARCHS': 'i386 x86_64',
'ARCHS': 'x86_64',
'GCC_OPTIMIZATION_LEVEL': '3',
'GCC_ENABLE_FIX_AND_CONTINUE': 'NO',
},
Expand All @@ -216,7 +216,7 @@
{
'xcode_settings':
{
'ARCHS': 'i386 x86_64',
'ARCHS': 'x86_64',
'GCC_OPTIMIZATION_LEVEL': '0',
'GCC_ENABLE_FIX_AND_CONTINUE': 'NO',
},
Expand Down
14 changes: 0 additions & 14 deletions 14 libfoundation/include/foundation.h
Original file line number Diff line number Diff line change
Expand Up @@ -159,25 +159,11 @@ along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
#define __MAC__ 1

// Architecture
#if defined(__i386)
#define __32_BIT__ 1
#define __LITTLE_ENDIAN__ 1
#define __I386__ 1
#define __LP32__ 1
#define __SMALL__ 1
#elif defined(__ppc__)
#define __32_BIT__ 1
#define __BIG_ENDIAN__ 1
#define __PPC__ 1
#define __LP32__ 1
#define __SMALL__ 1
#elif defined(__x86_64__)
#define __64_BIT__ 1
#define __LITTLE_ENDIAN__ 1
#define __X86_64__ 1
#define __LP64__ 1
#define __MEDIUM__ 1
#endif

// Native char set
#define __MACROMAN__ 1
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.