Unfortunately, -fno-pic must be set manually, even for kernel rules.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7982 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-06-15 16:49:36 +00:00
parent 262923839e
commit 995a393e12
3 changed files with 5 additions and 3 deletions

View File

@ -39,8 +39,8 @@ KernelStaticLibrary boot_loader :
# utils
list.c
kernel_cpp.cpp
:
-fno-builtin
: -fno-pic
;
# The partition support is built in an extra static library
@ -51,7 +51,7 @@ KernelStaticLibrary boot_partitions :
apple.cpp
intel.cpp
PartitionMap.cpp
:
: -fno-pic
;
# Tell Jam where to find the utility sources

View File

@ -11,4 +11,5 @@ KernelStaticLibrary boot_amiga_ffs :
Volume.cpp
Directory.cpp
File.cpp
: -fno-pic
;

View File

@ -13,4 +13,5 @@ KernelStaticLibrary boot_bfs :
Link.cpp
Stream.cpp
BPlusTree.cpp
: -fno-pic
;