The platform dependent header dir is explicitly included now. Changed the libgcc.a handling a bit. Re-run configure!

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3178 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2003-05-05 22:07:33 +00:00
parent 4b9f28b545
commit 09c5682d91
2 changed files with 30 additions and 15 deletions
+7 -2
View File
@@ -191,6 +191,9 @@ rule SetupIncludes
# Used as a fallback, the R5 header directories (we should remove this as soon as possible)
HDRS += /boot/develop/headers/posix /boot/develop/headers/cpp ;
# The platform dependent headers.
HDRS += $(PLATFORM_HEADERS) ;
}
rule SetupR5Includes
@@ -1373,6 +1376,8 @@ rule SetupKernel
HDRS += [ PublicHeaders $(public_kernel_includes) ] ;
# Use private directories
HDRS += [ PrivateHeaders $(private_kernel_includes) ] ;
# The platform dependent headers.
HDRS += $(PLATFORM_HEADERS) ;
UseArchHeaders $(OBOS_ARCH) ;
@@ -1415,9 +1420,9 @@ rule KernelLd
MakeLocate $(1) : $(LOCATE_TARGET) ;
# Add libgcc.a - NB this should be detected not hard coded!
# Add the platform specific static libs (libgcc.a).
if ! $(5) {
LINKLIBS on $(1) += -L $(GCC_PATH) -lgcc ;
LINKLIBS on $(1) += $(PLATFORM_LINKLIBS) ;
}
}