0

我已经找到了有关此错误消息的先前问题,但它们与我的情况不匹配,这是场景:

环境:Windows 8.1 和配置了 64 位 GCC 的 CodeBlocks =>如何使用带 CodeBlocks 的 G++ 编译 64 位?

问题:测试基本的多线程,=> https://www.geeksforgeeks.org/multithreading-c-2/中列出的简单程序如下:

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>

// A normal C function that is executed as a thread 
// when its name is specified in pthread_create()
void *myThreadFun(void *vargp)
{
    sleep(1);
    printf("Printing GeeksQuiz from Thread \n");
    return NULL;
}

int main()
{
    pthread_t tid;
    printf("Before Thread\n");
    pthread_create(&tid, NULL, myThreadFun, NULL);
    pthread_join(tid, NULL);
    printf("After Thread\n");
    exit(0);
}

在标准的 32 位中编译它可以完美地完成和工作,但是当使用MinGW-64编译时(如何使用 G++ w/ CodeBlocks 编译 64 位?)它在 pthread.h 上出现 4 个错误而失败:

pthread.h|418|error: expected identifier or '(' before '{' token|
pthread.h|428|error: expected identifier or '(' before '{' token|
pthread.h|438|error: expected identifier or '(' before '{' token|
pthread.h|447|error: expected identifier or '(' before '{' token|

不用说pthread.h没有以任何方式被修改或更改。错误指向四个#define行:

/* Recursive API emulation.  */
#undef localtime_r
#define localtime_r(_Time, _Tm) ({ struct tm *___tmp_tm;        \
                        pthread_testcancel();   \
                        ___tmp_tm = localtime((_Time));\
                        if (___tmp_tm) {    \
                          *(_Tm) = *___tmp_tm;  \
                          ___tmp_tm = (_Tm);    \
                        }           \
                        ___tmp_tm;  })

#undef gmtime_r
#define gmtime_r(_Time,_Tm) ({ struct tm *___tmp_tm;        \
                        pthread_testcancel();   \
                        ___tmp_tm = gmtime((_Time)); \
                        if (___tmp_tm) {    \
                          *(_Tm) = *___tmp_tm;  \
                          ___tmp_tm = (_Tm);    \
                        }           \
                        ___tmp_tm;  })

#undef ctime_r
#define ctime_r(_Time,_Str) ({ char *___tmp_tm;         \
                        pthread_testcancel();   \
                        ___tmp_tm = ctime((_Time));  \
                        if (___tmp_tm)      \
                         ___tmp_tm =        \
                           strcpy((_Str),___tmp_tm); \
                        ___tmp_tm;  })

#undef asctime_r
#define asctime_r(_Tm, _Buf)    ({ char *___tmp_tm;         \
                        pthread_testcancel();   \
                        ___tmp_tm = asctime((_Tm)); \
                        if (___tmp_tm)      \
                         ___tmp_tm =        \
                           strcpy((_Buf),___tmp_tm);\
                        ___tmp_tm;  })

其他程序针对 64 位正确编译和运行,在运行时显示在进程的详细信息中。我不明白相同的未修改头文件如何仅在编译 64 位时显示错误。构建日志显示:

-------------- Build: Debug in MultiThreadGCCx64 (compiler: GNU GCC Compiler x64)---------------

x86_64-w64-mingw32-gcc.exe -Wall -g -std=c99 -m64 -I"C:\Program Files (x86)\CodeBlocks\MinGW" -c Z:\CTemp\CProjects\MultiThreadGCCx64\main.c -o obj\Debug\main.o
In file included from Z:\CTemp\CProjects\MultiThreadGCCx64\main.c:11:0:
Z:\CTemp\CProjects\MultiThreadGCCx64\pthread.h:418:34: error: expected identifier or '(' before '{' token
 #define localtime_r(_Time, _Tm) ({ struct tm *___tmp_tm;  \
                                  ^
Z:\CTemp\CProjects\MultiThreadGCCx64\pthread.h:428:30: error: expected identifier or '(' before '{' token
 #define gmtime_r(_Time,_Tm) ({ struct tm *___tmp_tm;  \
                              ^
Z:\CTemp\CProjects\MultiThreadGCCx64\pthread.h:438:30: error: expected identifier or '(' before '{' token
 #define ctime_r(_Time,_Str) ({ char *___tmp_tm;   \
                              ^
Z:\CTemp\CProjects\MultiThreadGCCx64\pthread.h:447:31: error: expected identifier or '(' before '{' token
 #define asctime_r(_Tm, _Buf) ({ char *___tmp_tm;   \
                               ^
Z:\CTemp\CProjects\MultiThreadGCCx64\main.c: In function 'myThreadFun':
Z:\CTemp\CProjects\MultiThreadGCCx64\main.c:19:5: warning: implicit declaration of function 'sleep'; did you mean '_sleep'? [-Wimplicit-function-declaration]
     sleep(1);
     ^~~~~
     _sleep
Process terminated with status 1 (0 minute(s), 0 second(s))
4 error(s), 1 warning(s) (0 minute(s), 0 second(s))

我承认我只是这些领域(多线程、64 位程序)的初学者,所以如果我的要求对专家来说非常明显,我深表歉意,但经过大量研究后,我在以前的帖子中找不到任何帮助我被困住了。

非常感谢您提供的任何帮助。

4

1 回答 1

0

Use 64-bit MinGW's pthread.h instead of copying or otherwise using the pthread.h from 32-bit MinGW (like you were apparently doing).

Low-level header files like this are specific to the compiler, including compiler version and configuration.

于 2018-01-02T19:17:04.877 回答