Index: osprey/ipa/common/ipc_compile.cxx
===================================================================
--- osprey/ipa/common/ipc_compile.cxx	(revision 3469)
+++ osprey/ipa/common/ipc_compile.cxx	(working copy)
@@ -1389,7 +1389,8 @@
   case F_CALL_SHARED:
   case F_CALL_SHARED_RELOC:
 #ifndef TARG_MIPS
-#if !defined(TARG_SL)
+#if !defined(TARG_SL) && !defined(TARG_X8664)
+    // X8664 Target does not support it yet
     args.push_back("-pic1");
 #endif
 #endif
@@ -1398,8 +1399,10 @@
     args.push_back("-non_shared");
     break;
   case F_RELOCATABLE:
+#if !defined(TARG_X8664)
     if (IPA_Enable_Relocatable_Opt == TRUE)
       args.push_back("-pic1");
+#endif
     break;
   }
   
