No Issue - Fix building with WebRTC enabled on non-Intel Macs.

int3 is Intel only, so don't use it on ARM, use __builtin_trap() instead.
pull/1998/head
Brian Smith 2ヶ月前
コミット 5f1ef110ff
  1. 2
      media/webrtc/trunk/webrtc/system_wrappers/source/tick_util.cc

@ -77,7 +77,7 @@ int64_t TickTime::QueryOsForTicks() {
if (retval != KERN_SUCCESS) {
// TODO(wu): Implement CHECK similar to chrome for all the platforms.
// Then replace this with a CHECK(retval == KERN_SUCCESS);
#ifndef WEBRTC_IOS
#if !defined(WEBRTC_IOS) && !defined(__aarch64__)
asm("int3");
#else
__builtin_trap();

読み込み中…
キャンセル
保存