From 64264fa6acd1d75c177bf8c8befa96d7dc61644a Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sat, 17 Aug 2013 09:10:31 +0200 Subject: [PATCH] Use Objects instead of KernelObjects Should we actually require differently built glue code for the kernel or kernel add-ons, which should build a separate set. --- src/system/glue/Jamfile | 2 +- src/system/glue/arch/arm/Jamfile | 2 +- src/system/glue/arch/m68k/Jamfile | 2 +- src/system/glue/arch/mipsel/Jamfile | 2 +- src/system/glue/arch/ppc/Jamfile | 2 +- src/system/glue/arch/x86/Jamfile | 2 +- src/system/glue/arch/x86_64/Jamfile | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/system/glue/Jamfile b/src/system/glue/Jamfile index 950e380e78..607f688aa5 100644 --- a/src/system/glue/Jamfile +++ b/src/system/glue/Jamfile @@ -5,7 +5,7 @@ for architectureObject in [ MultiArchSubDirSetup ] { on $(architectureObject) { UsePrivateSystemHeaders ; - KernelObjects + Objects init_term_dyn.c start_dyn.c haiku_version_glue.c diff --git a/src/system/glue/arch/arm/Jamfile b/src/system/glue/arch/arm/Jamfile index 4cc72a3a43..464ecd361f 100644 --- a/src/system/glue/arch/arm/Jamfile +++ b/src/system/glue/arch/arm/Jamfile @@ -3,7 +3,7 @@ SubDir HAIKU_TOP src system glue arch arm ; local architectureObject ; for architectureObject in [ MultiArchSubDirSetup arm ] { on $(architectureObject) { - KernelObjects + Objects crti.S crtn.S ; diff --git a/src/system/glue/arch/m68k/Jamfile b/src/system/glue/arch/m68k/Jamfile index 9d74eb5f06..82290293bf 100644 --- a/src/system/glue/arch/m68k/Jamfile +++ b/src/system/glue/arch/m68k/Jamfile @@ -3,7 +3,7 @@ SubDir HAIKU_TOP src system glue arch m68k ; local architectureObject ; for architectureObject in [ MultiArchSubDirSetup m68k ] { on $(architectureObject) { - KernelObjects + Objects crti.S crtn.S ; diff --git a/src/system/glue/arch/mipsel/Jamfile b/src/system/glue/arch/mipsel/Jamfile index e42aea477a..7a84717797 100644 --- a/src/system/glue/arch/mipsel/Jamfile +++ b/src/system/glue/arch/mipsel/Jamfile @@ -3,7 +3,7 @@ SubDir HAIKU_TOP src system glue arch mipsel ; local architectureObject ; for architectureObject in [ MultiArchSubDirSetup mipsel ] { on $(architectureObject) { - KernelObjects + Objects crti.S crtn.S ; diff --git a/src/system/glue/arch/ppc/Jamfile b/src/system/glue/arch/ppc/Jamfile index c6ec452bf8..de6cdb7034 100644 --- a/src/system/glue/arch/ppc/Jamfile +++ b/src/system/glue/arch/ppc/Jamfile @@ -3,7 +3,7 @@ SubDir HAIKU_TOP src system glue arch ppc ; local architectureObject ; for architectureObject in [ MultiArchSubDirSetup ppc ] { on $(architectureObject) { - KernelObjects + Objects crti.S crtn.S ; diff --git a/src/system/glue/arch/x86/Jamfile b/src/system/glue/arch/x86/Jamfile index 9ec00312ec..407af4b4da 100644 --- a/src/system/glue/arch/x86/Jamfile +++ b/src/system/glue/arch/x86/Jamfile @@ -3,7 +3,7 @@ SubDir HAIKU_TOP src system glue arch x86 ; local architectureObject ; for architectureObject in [ MultiArchSubDirSetup x86 x86_gcc2 ] { on $(architectureObject) { - KernelObjects + Objects crti.S crtn.S ; diff --git a/src/system/glue/arch/x86_64/Jamfile b/src/system/glue/arch/x86_64/Jamfile index 554a21f36d..d63e77a834 100644 --- a/src/system/glue/arch/x86_64/Jamfile +++ b/src/system/glue/arch/x86_64/Jamfile @@ -3,7 +3,7 @@ SubDir HAIKU_TOP src system glue arch x86_64 ; local architectureObject ; for architectureObject in [ MultiArchSubDirSetup x86_64 ] { on $(architectureObject) { - KernelObjects + Objects crti.S crtn.S ;