如何在 Solaris 中使用 cc 编译 c?



我想在不同的操作系统中测试我的程序,但gcc在 Solaris 中并不真正工作,但有cc

这是我如何使用 gcc 编译的:

gcc -c quicksort.c sched.c -g -pthread -O3
gcc -o quicksort quicksort.o sched.o -Wall -g -pthread -O3

我尝试使用相同的参数使用 cc 进行编译,但这是我得到的:

quicksort.c:
sched.c:
"sched.c", line 233: warning: argument #3 is incompatible with prototype:
prototype: pointer to function(pointer to void) returning pointer to void : "/usr/include/pthread.h", line 197
argument : pointer to void
ld: fatal :  soname option (-h, --soname) is incompatible with building a dynamic executable
ld: fatal :  flags processing errors

这是产生第一个错误的行:

pthread_create(&s->tab_thread[i], NULL, (void *) main_thread, new_args_sched(i, s));

new_args_sched只是一个将参数传递给函数的结构main_thread

我不知道我应该使用什么选项,我尝试了-mt-lpthread但没有用。我有 3 个文件quicksort.c,主要、sched.hsched.c

编辑

Solaris 计算机在ssh它不是我的,我无法配置它。gcc的版本3.4.3仅使用C90我的代码使用C11.只有cc应该工作,但我不知道如何正确编译它......

我正在使用结构体传入main_thread如下所示:

struct sched_args {
int i;
struct scheduler *s;
};
struct sched_args *
new_args_sched(int i, struct scheduler *s) {
struct sched_args *args = malloc(sizeof(struct sched_args));
if(args == NULL)
return NULL;
args->i = i;
args->s = s;
return args;
}

所以这是我使用 pthread_create 时如何在我的函数中获取它:

void main_thread(void *closure) {
struct sched_args *args = (struct sched_args *)closure;
int i = args->i;
struct scheduler *s = args->s
/* doing something */
}

此代码

void main_thread(void *closure) {
struct sched_args *args = (struct sched_args *)closure;
int i = args->i;
struct scheduler *s = args->s
/* doing something */
}

需要

void *main_thread(void *closure) {
struct sched_args *args = (struct sched_args *)closure;
int i = args->i;
struct scheduler *s = args->s
/* doing something */
return( NULL );
}

pthread_create()POSIX标准功能作为原型

int pthread_create(pthread_t *restrict thread,
const pthread_attr_t *restrict attr,
void *(*start_routine)(void*), void *restrict arg);

请注意,第三个参数的类型是void *(*start_routine)(void*)- 采用void *参数并返回void *的函数的地址。

相关内容

  • 没有找到相关文章

最新更新