3

为 android 构建 google breakpad 但出现构建错误。不知道如何解决它们。代码结帐来自:代码

并构建为ndk build。结帐代码没有 lss 文件夹。

google-breakpad/android/google_breakpad/../../src/google_breakpad/common/breakpad_types.h:45:2: error: #error "inttypes.h has already been included before this header file, but "
 #error "inttypes.h has already been included before this header file, but "
  ^
jni/../google-breakpad/android/google_breakpad/../../src/google_breakpad/common/breakpad_types.h:46:2: error: #error "without __STDC_FORMAT_MACROS defined."
 #error "without __STDC_FORMAT_MACROS defined."
/google-breakpad/android/google_breakpad/../../src/common/memory.h:51:51: fatal error: third_party/lss/linux_syscall_support.h: No such file or directory
 #include "third_party/lss/linux_syscall_support.h"
4

2 回答 2

15

命令行是:

cd breakpad
git clone https://chromium.googlesource.com/linux-syscall-support src/third_party/lss
于 2017-10-06T12:27:30.880 回答
4

我也遇到了同样的问题,浪费了很多次。

为了解决这个问题,我尝试这样做:

  1. “git 克隆https://chromium.googlesource.com/linux-syscall-support

  2. 将 linux_syscall_support.h 从“git\linux-syscall-support”复制到“android_breakpad\src\third_party\lss”

希望对大家有所帮助。

于 2016-12-20T10:33:10.043 回答