Yes, I was able to get through this error..I was getting the below error in the make stage while compiling with the dynamic linking option..
Undefined first referenced
symbol in file
__sync_lock_release ../../.libs/libivykis.a(iv_signal.o)
__sync_lock_test_and_set ../../.libs/libivykis.a(iv_signal.o)
All I did was to modify the spinlock.h file and add the below lines..
#ifndef __sync_lock_test_and_set
#define __sync_lock_test_and_set
#endif
#ifndef __sync_lock_release
#define __sync_lock_release
#endif
And after this.. make completed without any issues...
Thanks,
Rakesh..