Add option -fPIC (Position Independent Code) needed for x86_64.

While the generic atomic implementation is not used by default
for x86_64 or x86 builds, we still need to always build it with
-fPIC if we ever want to use it on these platforms.
This commit is contained in:
Brian Behlendorf 2009-07-17 09:36:01 -07:00
parent 18b7a966e4
commit 3a63d17619
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ atomic_SOURCE = atomic.c
atomic_ASM = atomic.S
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -fPIC
EXTRA_DIST = ${atomic_SOURCE}
# Generates assembly to simplify inclusion in ../Makefile.am