1

下面的代码示例是用后续的命令行输入编译的

#include <pthread.h>
#include <stdio.h>
#include <string>
#include <map>

typedef std::map<std::string, std::string> map_t;

void *threadfunc(void *p) {
  map_t& m = *(map_t*)p;
  m["foo"] = "bar";
  return 0;
}

int main() {
  map_t m;
  pthread_t t;
  pthread_create(&t, 0, threadfunc, &m);
  printf("foo=%s\n", m["foo"].c_str());
  pthread_join(t, 0);
}

命令行输入:

g++ thread.cpp -fsanitize=thread -fPIE -pie -lpie -g

它编译得很好,但是当代码运行时会出现运行时错误。

FATAL: ThreadSanitizer can not mmap the shadow memory (something is mapped at 0x56167ae3b000 < 0x7cf000000000)
FATAL: Make sure to compile with -fPIE and to link with -pie.

我正在使用具有 fSanitize 的 g++ 版本运行它,所以我不确定问题的根源在哪里?

g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-28)
4

1 回答 1

0

GCC 对于 RedHat 中使用的 Linux 内核来说太旧了。由于映射地址 0x56167ae3b000 我猜内核版本是 4.1+(或从内核版本 4.1+ 向后移植),它将二进制文件映射到 0x550000000000。从版本 7.1.1 开始,GCC 支持此映射地址。请尝试添加编译器标志-static-libtsan。如果它没有帮助,那么您需要升级您的编译器。

于 2018-08-29T02:23:56.677 回答