Implementation of the Objective-C runtime for use with LLVM/clang
Questions tagged [libobjc2]
3 questions
3
votes
4 answers
How to make GNUstep libobjc2 to work?
I downloaded and built GNUstep libobjc2 1.6.1,
svn co http://svn.gna.org/svn/gnustep/libs/libobjc2/1.6.1/ rep
cd rep
make
and got this error when I tried to compile a Objective-C code.
hoon@ubuntu:~/work/objc2$ clang -fobjc-nonfragile-abi…

eonil
- 83,476
- 81
- 317
- 516
1
vote
1 answer
Building libobjc2 with CMake + Clang + MinGW on Linux
I'm trying to cross compile libobjc2 from Arch to Windows. I use the following command to configure with CMake:
cmake .. -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_SYSTEM_PROCESSOR=x86_64 -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++…

rb3
- 113
- 1
- 1
- 9
0
votes
1 answer
gnustep/linux "hello world" coredumps
I followed this gnustep setup.
The source contains an almostempty autoreleasepool. Without it, the application works like standard c.
#import
int main (int argc, const char * argv[])
{
@autoreleasepool {
…

Rudi Rüssel
- 439
- 4
- 13