From 23130678a10070028754f687b168a4c1bbebfeed Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sun, 12 Mar 2017 13:10:15 +0200 Subject: [PATCH] Fixed compilation errors and warnings in Mac PowerPC target Tested with GCC 5.2 on 10.4 (32-bit only) and Clang from Xcode 8.2 on 10.12 (64-bit only) --- src/posix/cocoa/i_main.mm | 4 +++- src/sound/music_audiotoolbox_mididevice.cpp | 19 +++++++++++++++---- src/stats.h | 9 +++++++++ 3 files changed, 27 insertions(+), 5 deletions(-) diff --git a/src/posix/cocoa/i_main.mm b/src/posix/cocoa/i_main.mm index 851e72e48..0d426caaa 100644 --- a/src/posix/cocoa/i_main.mm +++ b/src/posix/cocoa/i_main.mm @@ -173,7 +173,9 @@ static void I_DetectOS() "Unknown"; #endif - Printf("OS: %s %d.%d.%d (%s) %s\n", name, majorVersion, minorVersion, bugFixVersion, release, architecture); + Printf("OS: %s %d.%d.%d (%s) %s\n", name, + int(majorVersion), int(minorVersion), int(bugFixVersion), + release, architecture); } diff --git a/src/sound/music_audiotoolbox_mididevice.cpp b/src/sound/music_audiotoolbox_mididevice.cpp index 3dc57fdb0..ba48055e5 100644 --- a/src/sound/music_audiotoolbox_mididevice.cpp +++ b/src/sound/music_audiotoolbox_mididevice.cpp @@ -35,7 +35,7 @@ { \ DPrintf(DMSG_ERROR, \ "Failed with error 0x%08X at " __FILE__ ":%d:\n> %s", \ - result, __LINE__, #CALL); \ + int(result), __LINE__, #CALL); \ return __VA_ARGS__; \ } \ } @@ -55,7 +55,7 @@ int AudioToolboxMIDIDevice::Open(void (*callback)(unsigned int, void *, DWORD, D return 1; } - CFRunLoopAddTimer(CFRunLoopGetMain(), m_timer, kCFRunLoopDefaultMode); + CFRunLoopAddTimer(CFRunLoopGetCurrent(), m_timer, kCFRunLoopDefaultMode); m_callback = callback; m_userData = userData; @@ -73,7 +73,7 @@ void AudioToolboxMIDIDevice::Close() if (nullptr != m_timer) { - CFRunLoopRemoveTimer(CFRunLoopGetMain(), m_timer, kCFRunLoopDefaultMode); + CFRunLoopRemoveTimer(CFRunLoopGetCurrent(), m_timer, kCFRunLoopDefaultMode); CFRelease(m_timer); m_timer = nullptr; @@ -142,9 +142,16 @@ int AudioToolboxMIDIDevice::Resume() AUNode node; AT_MIDI_CHECK_ERROR(AUGraphGetIndNode(graph, i, &node), false); - AudioComponentDescription desc = {}; AudioUnit audioUnit = nullptr; +#if MAC_OS_X_VERSION_MAX_ALLOWED < 1050 + ComponentDescription desc = {}; + UInt32 classdatasize = 0; + void *classdata = nullptr; + AT_MIDI_CHECK_ERROR(AUGraphGetNodeInfo(graph, node, &desc, &classdatasize, &classdata, &audioUnit), false); +#else // 10.5 and above + AudioComponentDescription desc = {}; AT_MIDI_CHECK_ERROR(AUGraphNodeInfo(graph, node, &desc, &audioUnit), false); +#endif // prior to 10.5 if ( kAudioUnitType_Output != desc.componentType || kAudioUnitSubType_DefaultOutput != desc.componentSubType) @@ -260,7 +267,11 @@ bool AudioToolboxMIDIDevice::Preprocess(MIDIStreamer* song, bool looping) return false; } +#if MAC_OS_X_VERSION_MAX_ALLOWED < 1050 + AT_MIDI_CHECK_ERROR(MusicSequenceLoadSMFDataWithFlags(m_sequence, data, 0), false); +#else // 10.5 and above AT_MIDI_CHECK_ERROR(MusicSequenceFileLoadData(m_sequence, data, kMusicSequenceFile_MIDIType, 0), CFRelease(data), false); +#endif // prior to 10.5 CFRelease(data); diff --git a/src/stats.h b/src/stats.h index f18159616..c82410db1 100644 --- a/src/stats.h +++ b/src/stats.h @@ -130,6 +130,15 @@ inline unsigned long long rdtsc() unsigned long long tsc; asm volatile ("rdtsc; shlq $32, %%rdx; orq %%rdx, %%rax" : "=a" (tsc) :: "%rdx"); return tsc; +#elif defined __ppc__ + unsigned int lower, upper, temp; + do + { + asm volatile ("mftbu %0 \n mftb %1 \n mftbu %2 \n" + : "=r"(upper), "=r"(lower), "=r"(temp)); + } + while (upper != temp); + return (static_cast(upper) << 32) | lower; #else // i386 if (CPU.bRDTSC) {