有谁知道我如何禁用在文件源代码中写入的标志,而不更改此文件的源代码。也许我必须更改 .exp 文件之一?
我想在-pthread
不更改此源代码的情况下禁用标志:
// { dg-do run { target *-*-linux* } }
// { dg-options "-pthread" }
#include <pthread.h>
#include <cxxabi.h>
extern "C" int printf (const char *, ...);
int main()
{
try
{
pthread_exit (0);
}
catch (abi::__forced_unwind &)
{
printf ("caught forced unwind\n");
throw;
}
catch (...)
{
printf ("caught ...\n");
return 1;
}
}