Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried to compile libobjc2 by clang in debian wheezy (i386, CC=clang), but I get console log below.

In file included from properties.m:7:
./class.h:285:14: warning: direct access to objective-c's isa is deprecated in favor of object_setClass() and object_getClass() [-Wdeprecated-objc-isa-usage]
        return obj->isa;
                    ^
1 warning generated.
Compiling protocol.c...
Compiling runtime.c...
Compiling sarray2.c...
Compiling selector_table.c...
Compiling sendmsg2.c...
Compiling statics_loader.c...
Compiling toydispatch.c...
Linking static Objective-C runtime library...
Linking shared Objective-C runtime library...
/usr/lib/i386-linux-gnu/libc_nonshared.a(elf-init.oS): In function `__libc_csu_init':
(.text+0x2b): undefined reference to `__init_array_end'
/usr/bin/ld: /usr/lib/i386-linux-gnu/libc_nonshared.a(elf-init.oS): relocation R_386_GOTOFF against undefined hidden symbol `__init_array_end' can not be used when making a shared object
/usr/bin/ld: final link failed: Bad value
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [libobjc.so.4.6.0] Error 1

Do you have any ideas why it's going?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.