[haiku-commits] r34360 - in haiku/trunk/src/system/runtime_loader/arch: m68k ppc x86

  • From: korli@xxxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 29 Nov 2009 22:58:35 +0100 (CET)

Author: korli
Date: 2009-11-29 22:58:35 +0100 (Sun, 29 Nov 2009)
New Revision: 34360
Changeset: http://dev.haiku-os.org/changeset/34360/haiku

Modified:
   haiku/trunk/src/system/runtime_loader/arch/m68k/Jamfile
   haiku/trunk/src/system/runtime_loader/arch/ppc/Jamfile
   haiku/trunk/src/system/runtime_loader/arch/x86/Jamfile
Log:
added tls.o to runtimeloader. It linked successfully on x86 because of inlining.


Modified: haiku/trunk/src/system/runtime_loader/arch/m68k/Jamfile
===================================================================
--- haiku/trunk/src/system/runtime_loader/arch/m68k/Jamfile     2009-11-29 
21:47:37 UTC (rev 34359)
+++ haiku/trunk/src/system/runtime_loader/arch/m68k/Jamfile     2009-11-29 
21:58:35 UTC (rev 34360)
@@ -10,6 +10,7 @@
        :
        <src!system!libroot!os!arch!$(TARGET_ARCH)>atomic.o
        <src!system!libroot!os!arch!$(TARGET_ARCH)>thread.o
+       <src!system!libroot!os!arch!$(TARGET_ARCH)>tls.o
 
        <src!system!libroot!posix!string!arch!$(TARGET_ARCH)>arch_string.o
        <src!system!libroot!posix!string!arch!$(TARGET_ARCH)>memset.o

Modified: haiku/trunk/src/system/runtime_loader/arch/ppc/Jamfile
===================================================================
--- haiku/trunk/src/system/runtime_loader/arch/ppc/Jamfile      2009-11-29 
21:47:37 UTC (rev 34359)
+++ haiku/trunk/src/system/runtime_loader/arch/ppc/Jamfile      2009-11-29 
21:58:35 UTC (rev 34360)
@@ -10,6 +10,7 @@
        :
        <src!system!libroot!os!arch!$(TARGET_ARCH)>atomic.o
        <src!system!libroot!os!arch!$(TARGET_ARCH)>thread.o
+       <src!system!libroot!os!arch!$(TARGET_ARCH)>tls.o
 
        <src!system!libroot!posix!string!arch!$(TARGET_ARCH)>memcpy.o
        <src!system!libroot!posix!string!arch!$(TARGET_ARCH)>memset.o

Modified: haiku/trunk/src/system/runtime_loader/arch/x86/Jamfile
===================================================================
--- haiku/trunk/src/system/runtime_loader/arch/x86/Jamfile      2009-11-29 
21:47:37 UTC (rev 34359)
+++ haiku/trunk/src/system/runtime_loader/arch/x86/Jamfile      2009-11-29 
21:58:35 UTC (rev 34360)
@@ -10,6 +10,7 @@
        :
        <src!system!libroot!os!arch!$(TARGET_ARCH)>atomic.o
        <src!system!libroot!os!arch!$(TARGET_ARCH)>thread.o
+       <src!system!libroot!os!arch!$(TARGET_ARCH)>tls.o
 
 #      <src!system!libroot!posix!string>memcpy.o
        <src!system!libroot!posix!string!arch!$(TARGET_ARCH)>arch_string.o


Other related posts:

  • » [haiku-commits] r34360 - in haiku/trunk/src/system/runtime_loader/arch: m68k ppc x86 - korli