From 897f8bf0ed9c5f68505df4ea70e78aae4caffab0 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Sun, 18 Nov 2018 12:57:55 -0500 Subject: [PATCH] New configs now really 64 bit; they compile, almost link... ... The null, script-pipe, and Nyquist workbench modules all build fully. Just two missing symbols building Audacity, I don't yet know why: ld: warning: directory not found for option '-L/Users/paullicameli/GitHub/audacity/mac/build/Release' ld: warning: ignoring file /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/System/Library/Frameworks//QuickTime.framework/QuickTime, file was built for i386 which is not the architecture being linked (x86_64): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/System/Library/Frameworks//QuickTime.framework/QuickTime Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_ModalDialogDelegate", referenced from: objc-class-ref in FileDialogPrivate.o "_objc_readClassPair", referenced from: __ARCLite__load() in libarclite_macosx.a(arclite.o) ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) --- mac/Audacity.xcodeproj/project.pbxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mac/Audacity.xcodeproj/project.pbxproj b/mac/Audacity.xcodeproj/project.pbxproj index 32fe724df..1d61fe9c2 100644 --- a/mac/Audacity.xcodeproj/project.pbxproj +++ b/mac/Audacity.xcodeproj/project.pbxproj @@ -9294,7 +9294,7 @@ 5EC18AA0219B5AFD000EFBF9 /* Debug64 */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; "CLANG_CXX_LIBRARY[sdk=macosx10.7]" = "libc++"; CONFIG_DEBUG = yes; @@ -9745,7 +9745,7 @@ 5EC18AB9219B5B01000EFBF9 /* Release64 */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; "CLANG_CXX_LIBRARY[sdk=macosx10.7]" = "libc++"; CONFIG_DEBUG = no;