Hi Jonathan, > Hi Mel, > > Melton Low wrote: > >> Error during build on 1.7.2. I just tried building 1.7.2.1 with the >> same error. A partial output from my attempt to build 1.7.2.1: >> >> * new build flags or prefix >> CC fast-import.o >> powerpc-apple-darwin8-gcc-4.0.1: unrecognized option '-pthread' >> CC abspath.o > [...] > > Looks like it worked, though loudly. > > What does > > $ gcc -v > $ echo ' > # include <pthread.h> > > int main(void) > { > pthread_mutex_t test_mutex; > int retcode = 0; > retcode |= pthread_mutex_init(&test_mutex,(void *)0); > retcode |= pthread_mutex_lock(&test_mutex); > retcode |= pthread_mutex_unlock(&test_mutex); > return retcode; > } > > ' >pthreadtest.c > $ gcc -pthread pthreadtest.c > $ echo $? > $ ./a.out > $ echo $? > > say? > > Regards, > Jonathan Here is the output: BigMac:~/work melton$ gcc -v Using built-in specs. Target: powerpc-apple-darwin8 Configured with: /var/tmp/gcc/gcc-5370~2/src/configure --disable-checking -enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.0/ --with-gxx-include-dir=/include/c++/4.0.0 --with-slibdir=/usr/lib --build=powerpc-apple-darwin8 --host=powerpc-apple-darwin8 --target=powerpc-apple-darwin8 Thread model: posix gcc version 4.0.1 (Apple Computer, Inc. build 5370) BigMac:~/work melton$ echo ' > # include <pthread.h> > > int main(void) > { > pthread_mutex_t test_mutex; > int retcode = 0; > retcode |= pthread_mutex_init(&test_mutex,(void *)0); > retcode |= pthread_mutex_lock(&test_mutex); > retcode |= pthread_mutex_unlock(&test_mutex); > return retcode; > } > > ' >pthreadtest.c BigMac:~/work melton$ gcc -pthread pthreadtest.c powerpc-apple-darwin8-gcc-4.0.1: unrecognized option '-pthread' BigMac:~/work melton$ echo $? 0 BigMac:~/work melton$ ./a.out BigMac:~/work melton$ echo $? 0 BigMac:~/work melton$ Let me know anything else you would like me to try. Mel-- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html