Tagged Questions
1
vote
1answer
115 views
How resolve error:Conflicting type for “snprintf”
In my app i used Compiler for C/C++/Objective-C is Apple LLVM compiler 4.1 for simulator.
For simulator this is working. When i compiling same code for Device i changed Compiler for C/C++/Objective-C ...
1
vote
0answers
34 views
Gcc Eclipse checking
I use eclipse for C/C++ programming on a macOS Lion. Recently I've installed the new gcc version, gcc-mp-4.7, with macPorts. Then I have substituted this new version with the older one, the default ...
4
votes
2answers
840 views
Java 1.6 Segmentation fault 11 (OSX 10.7.4)
I have .jar file which during runtime reads one .dylib library which I compiled in OSX with GCC compiler.
Application runs without any problems on OSX 10.6.8.
Java version:
java version ...
4
votes
2answers
3k views
llvm-gcc missing on Mac OS X Lion: can not install mysql-python
I recently upgraded to Mac OS X 10.7 from 10.6.
I decided to use Python 2.7.
But when I'm trying to install the MySQLdb module to run Django, it fails:
$ sudo pip install MySQL-python
...
5
votes
2answers
4k views
How to remove the OSX-GCC-Installer?
Just a couple of days ago I discovered and used Kenneth Reitz's OSX-GCC-Installer to solve the issue of installing Ruby 1.9.3 via RVM on my Mac.
Today I read on Kenneth's blog about the Command Line ...
9
votes
2answers
2k views
Error when trying to install pylibmc on Mac OSX Lion
I've tried pip and easy_install, but I keep getting the following error:
error: command '/usr/bin/llvm-gcc' failed with exit status 1
I'm running OSX Lion and the install runs inside a virtualenv, ...
0
votes
2answers
894 views
Building Ruby 1.9.3 on Lion with Xcode 4.2 using ./configure --with-gcc=clang
My environment: Mac OS X v10.7.2 with Xcode 4.2.1
I am trying to build ruby 1.9.3 on Lion with Xcode 4.2.1. I understand there's an issue with the llvm-based gcc compiler that comes with Xcode 4.2.1. ...
1
vote
3answers
300 views
Why my program is receiving SIGABRT when I use OpenMP to make a for loop parallel?
I'm writing a scientific program to solve Maxwell's equation with C++. The task in data parallel and I want to use OpenMP to make the program parallel. But when I use OpenMP to parallelise a for loop ...