1rule ArchitectureSetup architecture 2{ 3 # ArchitectureSetup <architecture> ; 4 # 5 # Initializes all global packaging architecture dependent variables for the 6 # given packaging architecture. Also sets HAIKU_ARCH (to the primary 7 # architecture), if this is the first invocation of the rule, and adds 8 # the architecture to HAIKU_ARCHS, if not yet contained. 9 10 # analyze GCC version 11 local gccVersion 12 = [ FAnalyzeGCCVersion HAIKU_GCC_RAW_VERSION_$(architecture) ] ; 13 HAIKU_GCC_VERSION_$(architecture) = $(gccVersion) ; 14 15 # enable GCC -pipe option, if requested 16 local gccBaseFlags ; 17 if $(HAIKU_USE_GCC_PIPE) = 1 { 18 gccBaseFlags = -pipe ; 19 } 20 21 # disable strict aliasing on anything newer than gcc 2 as it may lead to 22 # unexpected results. also disable the tree-vrp (value range propagation) 23 # optimization for now as with the current gcc4 version we are using this 24 # results in some broken code. 25 # TODO: remove the -fno-strict-aliasing option when all code has been 26 # analyzed/fixed with regard to aliasing. 27 # TODO: retest/remove the -fno-tree-vrp option as soon as we have updated 28 # our gcc4 compiler. See this discussion on some issues: 29 # http://www.freelists.org/post/haiku-development/hrev45320-Yet-another-nonobvious-effect-of-ftreevrp-optimization 30 if $(gccVersion[1]) >= 3 { 31 gccBaseFlags += -fno-strict-aliasing ; 32 if $(HAIKU_CC_IS_CLANG_$(architecture)) != 1 { 33 gccBaseFlags += -fno-tree-vrp ; 34 } 35 } 36 37 # disable array bounds warnings on gcc 4.6 or newer since they trigger 38 # too many false positives. Coverity does a better job of this kind of 39 # analysis anyways. 40 if $(gccVersion[1]) >= 4 { 41 gccBaseFlags += -Wno-array-bounds ; 42 } 43 44 local cpu = $(HAIKU_CPU_$(architecture)) ; 45 if $(cpu) = arm { 46 if $(HAIKU_CC_IS_CLANG_$(architecture)) != 1 { 47 # For stackcrawls - not supported by Clang 48 gccBaseFlags += -mapcs-frame ; 49 } 50 } 51 52 # activating graphite optimizations 53 if $(HAIKU_USE_GCC_GRAPHITE_$(architecture)) = 1 { 54 gccBaseFlags += -floop-interchange -ftree-loop-distribution 55 -floop-strip-mine -floop-block ; 56 } 57 HAIKU_GCC_BASE_FLAGS_$(architecture) = $(gccBaseFlags) ; 58 59 # initial state for flags etc. 60 HAIKU_C++_$(architecture) ?= $(HAIKU_CC_$(architecture)) ; 61 HAIKU_LINK_$(architecture) = $(HAIKU_CC_$(architecture)) ; 62 HAIKU_LINKFLAGS_$(architecture) = $(gccBaseFlags) ; 63 64 HAIKU_CCFLAGS_$(architecture) += $(gccBaseFlags) -nostdinc ; 65 HAIKU_C++FLAGS_$(architecture) += $(gccBaseFlags) -nostdinc ; 66 67 # strip is required 68 if ! $(HAIKU_STRIP_$(architecture)) { 69 Exit "HAIKU_STRIP_$(architecture) not set. Please re-run configure." ; 70 } 71 72 HAIKU_ARCH_$(architecture) = $(cpu) ; 73 HAIKU_ARCH ?= $(cpu) ; 74 # Set only, if not set yet. This way HAIKU_ARCH is set to the primary 75 # architecture. 76 if ! $(cpu) in $(HAIKU_ARCHS) { 77 HAIKU_ARCHS += $(cpu) ; 78 } 79 HAIKU_DEFINES_$(architecture) += ARCH_$(cpu) ; 80 81 # directories 82 HAIKU_ARCH_OBJECT_DIR_$(architecture) 83 = [ FDirName $(HAIKU_OBJECT_BASE_DIR) $(architecture) ] ; 84 HAIKU_COMMON_DEBUG_OBJECT_DIR_$(architecture) 85 = [ FDirName $(HAIKU_ARCH_OBJECT_DIR_$(architecture)) common ] ; 86 HAIKU_DEBUG_0_OBJECT_DIR_$(architecture) 87 = [ FDirName $(HAIKU_ARCH_OBJECT_DIR_$(architecture)) release ] ; 88 89 local level ; 90 for level in $(HAIKU_DEBUG_LEVELS[2-]) { 91 HAIKU_DEBUG_$(level)_OBJECT_DIR_$(architecture) 92 = [ FDirName $(HAIKU_ARCH_OBJECT_DIR_$(architecture)) 93 debug_$(level) ] ; 94 } 95 96 # set variables for gcc header options 97 SetIncludePropertiesVariables HAIKU : _$(architecture) ; 98 99 # assembler flags 100 HAIKU_ASFLAGS_$(architecture) = ; 101 102 # C/C++ flags 103 if $(gccVersion[1]) >= 4 { 104 HAIKU_C++FLAGS_$(architecture) += -Wno-deprecated ; 105 } 106 107 switch $(cpu) { 108 case x86* : 109 # Enable use of the gcc built-in atomic functions instead of 110 # atomic_*(). The former are inlined and have thus less overhead. 111 # They are not available with gcc 2, but the header will take care 112 # of that. 113 HAIKU_DEFINES_$(architecture) += B_USE_BUILTIN_ATOMIC_FUNCTIONS ; 114 } 115 116 # warning flags 117 HAIKU_WARNING_CCFLAGS_$(architecture) 118 = -Wall -Wno-trigraphs -Wmissing-prototypes 119 -Wpointer-arith -Wcast-align -Wsign-compare -Wno-multichar ; 120 HAIKU_WARNING_C++FLAGS_$(architecture) = -Wall -Wno-trigraphs 121 -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wpointer-arith -Wcast-align 122 -Wsign-compare -Wno-multichar ; 123 124 HAIKU_WERROR_FLAGS_$(architecture) = ; 125 126 if $(gccVersion[1]) >= 4 { 127 # -Wuninitialized gives too many false positives. 128 HAIKU_WERROR_FLAGS_$(architecture) += -Wno-error=uninitialized 129 -Wno-error=maybe-uninitialized ; 130 131 # TODO: remove the -Wno-unused-but-set-variable option 132 HAIKU_WERROR_FLAGS_$(architecture) += -Wno-unused-but-set-variable ; 133 } 134 135 # debug flags 136 local debugFlags = -ggdb ; 137 138 # debug 0: suppress asserts 139 HAIKU_DEBUG_0_CCFLAGS_$(architecture) = [ FDefines NDEBUG=$(NDEBUG) ] ; 140 HAIKU_DEBUG_0_C++FLAGS_$(architecture) = [ FDefines NDEBUG=$(NDEBUG) ] ; 141 142 local level ; 143 for level in $(HAIKU_DEBUG_LEVELS[2-]) { 144 local flags = $(debugFlags) [ FDefines DEBUG=$(level) ] ; 145 HAIKU_DEBUG_$(level)_CCFLAGS_$(architecture) = $(flags) ; 146 HAIKU_DEBUG_$(level)_C++FLAGS_$(architecture) = $(flags) ; 147 } 148 149 if $(gccVersion[1]) >= 3 { 150 # TODO: Temporary work-around. Should be defined in the compiler specs 151 HAIKU_LINKFLAGS_$(architecture) += -Xlinker --no-undefined ; 152 } else { 153 HAIKU_DEFINES_$(architecture) += _BEOS_R5_COMPATIBLE_ ; 154 } 155 156 # private shared kernel/libroot headers 157 HAIKU_PRIVATE_SYSTEM_HEADERS_$(architecture) 158 = [ PrivateHeaders $(DOT) system system/arch/$(cpu) ] ; 159 160 # library and executable glue code 161 local commonGlueCode = 162 <src!system!glue!$(architecture)>init_term_dyn.o 163 <src!system!glue!arch!$(HAIKU_ARCH)!$(architecture)>crti.o 164 <src!system!glue!arch!$(HAIKU_ARCH)!$(architecture)>crtn.o 165 ; 166 HAIKU_LIBRARY_BEGIN_GLUE_CODE_$(architecture) = 167 <src!system!glue!arch!$(HAIKU_ARCH)!$(architecture)>crti.o 168 <$(architecture)>crtbeginS.o 169 <src!system!glue!$(architecture)>init_term_dyn.o 170 ; 171 HAIKU_LIBRARY_END_GLUE_CODE_$(architecture) = 172 <$(architecture)>crtendS.o 173 <src!system!glue!arch!$(HAIKU_ARCH)!$(architecture)>crtn.o 174 ; 175 HAIKU_EXECUTABLE_BEGIN_GLUE_CODE_$(architecture) = 176 <src!system!glue!arch!$(HAIKU_ARCH)!$(architecture)>crti.o 177 <$(architecture)>crtbeginS.o 178 <src!system!glue!$(architecture)>start_dyn.o 179 <src!system!glue!$(architecture)>init_term_dyn.o 180 ; 181 HAIKU_EXECUTABLE_END_GLUE_CODE_$(architecture) 182 = $(HAIKU_LIBRARY_END_GLUE_CODE_$(architecture)) ; 183 184 SEARCH on <$(architecture)>crtbeginS.o <$(architecture)>crtendS.o 185 = $(HAIKU_GCC_LIB_DIR_$(architecture)) ; 186 187 # init library name map 188 local libraryGrist = "" ; 189 if $(architecture) != $(HAIKU_PACKAGING_ARCHS[1]) { 190 libraryGrist = $(architecture) ; 191 } 192 local i ; 193 for i in be bnetapi debug device game locale mail media midi midi2 194 network package root screensaver textencoding tracker 195 translation z { 196 local library = lib$(i).so ; 197 HAIKU_LIBRARY_NAME_MAP_$(architecture)_$(i) 198 = $(library:G=$(libraryGrist)) ; 199 } 200 HAIKU_LIBRARY_NAME_MAP_$(architecture)_localestub 201 = <$(architecture)>liblocalestub.a ; 202 HAIKU_LIBRARY_NAME_MAP_$(architecture)_shared 203 = <$(architecture)>libshared.a ; 204 if $(architecture) = $(HAIKU_PACKAGING_ARCHS[1]) { 205 HAIKU_LIBRARY_NAME_MAP_$(architecture)_input_server 206 = <nogrist>input_server ; 207 } else { 208 HAIKU_LIBRARY_NAME_MAP_$(architecture)_input_server 209 = <$(architecture)>input_server ; 210 } 211} 212 213 214rule KernelArchitectureSetup architecture 215{ 216 # KernelArchitectureSetup <architecture> ; 217 # 218 # Initializes the global kernel and boot loader related variables. Those 219 # don't have a packaging architecture suffix, since they are only set for 220 # the primary packaging architecture. <architecture> is the primary 221 # packaging architecture (supplied for convenience). 222 223 HAIKU_KERNEL_ARCH = $(HAIKU_ARCH) ; 224 225 local gccVersion = $(HAIKU_GCC_VERSION_$(architecture)) ; 226 local cpu = $(HAIKU_CPU_$(architecture)) ; 227 228 switch $(cpu) { 229 case ppc : 230 HAIKU_BOOT_PLATFORM ?= openfirmware ; 231 HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 1440 ; # in kB 232 # offset in floppy image (>= sizeof(haiku_loader)) 233 HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET = 192 ; # in kB - unused yet 234 235 case arm : 236 HAIKU_BOOT_PLATFORM ?= u-boot ; 237 238 HAIKU_BOOT_SDIMAGE_SIZE ?= 128 ; 239 # SOC's like allwinner need an offset to skip the hardcoded initial loader 240 HAIKU_BOOT_SDIMAGE_BEGIN = 40950 ; # 512-byte sectors (divisible by 63) 241 242 HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 1440 ; 243 # offset in floppy image (>= sizeof(haiku_loader)) 244 HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET = 192 ; # in kB - unused yet 245 HAIKU_BOOT_LOADER_BASE ?= 0x1000000 ; 246 247 case x86 : 248 HAIKU_BOOT_PLATFORM ?= bios_ia32 ; 249 HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 2880 ; # in kB 250 # offset in floppy image (>= sizeof(haiku_loader)) 251 HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET = 320 ; # in kB 252 253 # nasm is required for target arch x86 254 if ! $(HAIKU_NASM) { 255 Exit "HAIKU_NASM not set. Please re-run configure." ; 256 } 257 258 case x86_64 : 259 # x86_64 completely shares the x86 bootloader. 260 HAIKU_BOOT_PLATFORM ?= bios_ia32 ; 261 HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 2880 ; # in kB 262 # offset in floppy image (>= sizeof(haiku_loader)) 263 HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET = 320 ; # in kB 264 265 # x86_64 kernel source is under arch/x86. 266 HAIKU_KERNEL_ARCH = x86 ; 267 268 # nasm is required for target arch x86_64 269 if ! $(HAIKU_NASM) { 270 Exit "HAIKU_NASM not set. Please re-run configure." ; 271 } 272 273 case m68k : 274 HAIKU_BOOT_PLATFORM ?= atari_m68k ; 275 switch $(HAIKU_BOOT_PLATFORM) { 276 case atari_m68k : 277 { 278 HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 1440 ; # in kB 279 } 280 case amiga_m68k : 281 { 282 # for now we have trouble reading from double-sided images 283 HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 880 ; # in kB 284 } 285 } 286 # offset in floppy image (>= sizeof(haiku_loader)) 287 HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET = 260 ; # in kB 288 HAIKU_CONTAINER_STRIP_EXECUTABLES on 289 $(HAIKU_FLOPPY_BOOT_IMAGE_CONTAINER_NAME) = 1 ; 290 291 case * : 292 Exit "Currently unsupported target CPU:" $(cpu) ; 293 } 294 295 # private kernel headers to be used when compiling kernel code 296 HAIKU_PRIVATE_KERNEL_HEADERS = 297 [ PrivateHeaders $(DOT) kernel libroot shared 298 kernel/boot/platform/$(HAIKU_BOOT_PLATFORM) ] 299 [ ArchHeaders $(HAIKU_KERNEL_ARCH) ] 300 [ FDirName $(HAIKU_COMMON_DEBUG_OBJECT_DIR_$(architecture)) system 301 kernel ] 302 $(HAIKU_PRIVATE_SYSTEM_HEADERS_$(architecture)) 303 ; 304 305 # C/C++ flags 306 local gccBaseFlags = $(HAIKU_GCC_BASE_FLAGS_$(architecture)) 307 -finline -fno-builtin ; 308 309 if $(gccVersion[1]) >= 4 { 310 gccBaseFlags += -ffreestanding ; 311 } 312 313 local g++BaseFlags = $(gccBaseFlags) -fno-exceptions ; 314 315 if $(gccVersion[1]) >= 3 && $(HAIKU_CC_IS_CLANG_$(architecture)) != 1 { 316 g++BaseFlags += -fno-use-cxa-atexit ; 317 } 318 319 HAIKU_KERNEL_CCFLAGS = $(HAIKU_CCFLAGS_$(architecture)) $(gccBaseFlags) ; 320 HAIKU_KERNEL_C++FLAGS = $(HAIKU_C++FLAGS_$(architecture)) $(g++BaseFlags) ; 321 HAIKU_BOOT_CCFLAGS = $(HAIKU_CCFLAGS_$(architecture)) $(gccBaseFlags) ; 322 HAIKU_BOOT_C++FLAGS = $(HAIKU_C++FLAGS_$(architecture)) $(g++BaseFlags) ; 323 HAIKU_BOOT_LINKFLAGS = ; 324 HAIKU_BOOT_LDFLAGS = -Bstatic ; 325 326 if $(gccVersion[1]) >= 4 { 327 HAIKU_KERNEL_C++FLAGS += -std=gnu++11 ; 328 } 329 330 if $(gccVersion[1]) >= 6 { 331 HAIKU_KERNEL_C++FLAGS += -fno-delete-null-pointer-checks ; 332 HAIKU_KERNEL_CCFLAGS += -fno-delete-null-pointer-checks ; 333 } 334 335 HAIKU_KERNEL_PIC_CCFLAGS = -fno-pic ; 336 HAIKU_KERNEL_PIC_LINKFLAGS = ; 337 HAIKU_KERNEL_ADDON_LINKFLAGS = ; 338 339 # Any special kernel base addresses 340 if $(HAIKU_BOOT_LOADER_BASE) { 341 HAIKU_BOOT_LDFLAGS += 342 --defsym BOOT_LOADER_BASE=$(HAIKU_BOOT_LOADER_BASE) ; 343 } 344 345 switch $(cpu) { 346 case arm : 347 # Workaround for ld using 32k for alignment despite forcing it in the config... 348 # should definitely not be needed! 349 HAIKU_KERNEL_LINKFLAGS += 350 -Wl,-z -Wl,max-page-size=0x1000 351 -Wl,-z -Wl,common-page-size=0x1000 ; 352 353 case ppc : 354 # Build a position independent PPC kernel. We need to be able to 355 # relocate the kernel, since the virtual address space layout at 356 # boot time is not fixed. 357 HAIKU_KERNEL_PIC_CCFLAGS = -fPIE ; 358 HAIKU_KERNEL_PIC_LINKFLAGS = -shared -fPIE ; 359 360 case m68k : 361 # We don't want to have to handle emulating missing FPU opcodes for 362 # 040 and 060 in the kernel. 363 HAIKU_KERNEL_CCFLAGS += -mtune=68020-60 ; 364 HAIKU_KERNEL_C++FLAGS += -mtune=68020-60 ; 365 366 case x86 : 367 HAIKU_KERNEL_CCFLAGS += -march=pentium ; 368 HAIKU_KERNEL_C++FLAGS += -march=pentium ; 369 370 case x86_64 : 371 # Kernel lives in the top 2GB of the address space, use kernel code 372 # model. 373 HAIKU_KERNEL_PIC_CCFLAGS += -mcmodel=kernel ; 374 375 # Disable the red zone, which cannot be used in kernel code due to 376 # interrupts, and always enable the frame pointer so stack traces 377 # are correct. 378 HAIKU_KERNEL_CCFLAGS += -mno-red-zone -fno-omit-frame-pointer ; 379 HAIKU_KERNEL_C++FLAGS += -mno-red-zone -fno-omit-frame-pointer ; 380 HAIKU_KERNEL_PIC_LINKFLAGS += -z max-page-size=0x1000 ; 381 HAIKU_KERNEL_ADDON_LINKFLAGS += -z max-page-size=0x1000 ; 382 383 # BIOS Bootloader is 32-bit. 384 if $(HAIKU_BOOT_PLATFORM) = bios_ia32 { 385 HAIKU_BOOT_LINKFLAGS += -m elf_i386_haiku ; 386 HAIKU_BOOT_CCFLAGS += -m32 -march=pentium ; 387 HAIKU_BOOT_C++FLAGS += -m32 -march=pentium ; 388 } 389 } 390 391 if $(HAIKU_BOOT_PLATFORM) = efi { 392 HAIKU_BOOT_CCFLAGS += -fpic -fno-stack-protector -fPIC -fshort-wchar -mno-red-zone 393 -maccumulate-outgoing-args -Wno-error=unused-variable ; 394 HAIKU_BOOT_C++FLAGS += -fpic -fno-stack-protector -fPIC -fshort-wchar -mno-red-zone 395 -maccumulate-outgoing-args -Wno-error=unused-variable ; 396 HAIKU_BOOT_LDFLAGS = -Bstatic -Bsymbolic -shared -nostdlib -znocombreloc -nostartfiles -no-undefined ; 397 } else { 398 HAIKU_BOOT_CCFLAGS += -fno-pic ; 399 HAIKU_BOOT_C++FLAGS += -fno-pic ; 400 } 401 402 # warning flags 403 HAIKU_KERNEL_WARNING_CCFLAGS = -Wall -Wno-trigraphs -Wmissing-prototypes 404 -Wno-multichar ; 405 HAIKU_KERNEL_WARNING_C++FLAGS = -Wall -Wno-trigraphs -Wno-multichar ; 406 407 # debug flags 408 local level ; 409 for level in $(HAIKU_DEBUG_LEVELS) { 410 local flags = $(HAIKU_DEBUG_FLAGS) [ FDefines DEBUG=$(level) ] ; 411 HAIKU_KERNEL_DEBUG_$(level)_CCFLAGS 412 = $(HAIKU_DEBUG_$(level)_CCFLAGS_$(architecture)) ; 413 HAIKU_KERNEL_DEBUG_$(level)_C++FLAGS 414 = $(HAIKU_DEBUG_$(level)_C++FLAGS_$(architecture)) ; 415 } 416 417 # defines 418 HAIKU_KERNEL_DEFINES += _KERNEL_MODE ; 419 420 HAIKU_DEFINES_$(architecture) 421 += BOOT_ARCHIVE_IMAGE_OFFSET=$(HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET) ; 422 # TODO: That doesn't need to be a general define. It's just needed for 423 # compiling (part of) the boot loader. 424 425 # kernel add-on glue code 426 HAIKU_KERNEL_ADDON_BEGIN_GLUE_CODE = <$(architecture)>crtbeginS.o 427 <src!system!glue!$(architecture)>haiku_version_glue.o ; 428 HAIKU_KERNEL_ADDON_END_GLUE_CODE = <$(architecture)>crtendS.o ; 429} 430 431 432rule ArchitectureSetupWarnings architecture 433{ 434 # ArchitectureSetupWarnings <architecture> ; 435 # 436 # Sets up compiler warnings and error flags for various subdirectories for 437 # the given packaging architecture. 438 439 local cpu = $(HAIKU_CPU_$(architecture)) ; 440 switch $(cpu) { 441 case arm : 442 return ; 443 # we use #warning as placeholders for things to write... 444 case m68k : 445 return ; 446 # we use #warning as placeholders for things to write... 447 case ppc : 448 return ; 449 # we use #warning as placeholders for things to write... 450 } 451 452 # enable -Werror for certain parts of the source tree 453 HAIKU_WERROR_ARCH = $(architecture) ; 454 455 rule EnableWerror dirTokens : scope { 456 # Clang gives way more warnings than GCC, so that code won't compile 457 # with -Werror when using Clang. 458 if $(HAIKU_CC_IS_CLANG_$(architecture)) != 1 { 459 SetConfigVar WARNINGS : HAIKU_TOP $(dirTokens) : treatAsErrors 460 : $(scope) ; 461 } 462 } 463 464 # Work-around for GCC 2 problem -- despite -Wno-multichar it reports 465 # multichar warnings in headers/private/kernel/debugger_keymaps.h included 466 # by src/system/kernel/arch/x86/arch_debug_console.cpp. 467 local gccVersion = $(HAIKU_GCC_VERSION_$(architecture)) ; 468 if $(gccVersion[1]) = 2 { 469 local file = <src!system!kernel!arch!x86>arch_debug_console.o ; 470 WARNINGS on $(file) = $(WARNINGS) ; 471 } 472 473 if $(HAIKU_CC_IS_CLANG_$(architecture)) = 1 { 474 # We need -integrated-as, as otherwise Clang uses GCC as assembler and 475 # passes -fheinous-gnu-extensions to GCC, which GCC does not understand 476 # then errors out. 477 AppendToConfigVar CCFLAGS : 478 HAIKU_TOP src system libroot posix glibc : 479 -integrated-as -fgnu89-inline -fheinous-gnu-extensions : global ; 480 } 481 482 EnableWerror src add-ons accelerants ; 483 EnableWerror src add-ons bluetooth ; 484 EnableWerror src add-ons decorators ; 485 EnableWerror src add-ons disk_systems ; 486 EnableWerror src add-ons input_server devices ; 487 EnableWerror src add-ons input_server filters ; 488# EnableWerror src add-ons input_server methods pen ; 489 EnableWerror src add-ons input_server methods t9 ; 490 EnableWerror src add-ons kernel bluetooth ; 491 EnableWerror src add-ons kernel bus_managers acpi ; 492 EnableWerror src add-ons kernel bus_managers agp_gart ; 493 EnableWerror src add-ons kernel bus_managers ata ; 494 EnableWerror src add-ons kernel bus_managers config_manager ; 495# EnableWerror src add-ons kernel bus_managers firewire ; 496 EnableWerror src add-ons kernel bus_managers ide ; 497 EnableWerror src add-ons kernel bus_managers isa ; 498 EnableWerror src add-ons kernel bus_managers pci ; 499 EnableWerror src add-ons kernel bus_managers ps2 ; 500 EnableWerror src add-ons kernel bus_managers random ; 501 EnableWerror src add-ons kernel bus_managers scsi ; 502 EnableWerror src add-ons kernel bus_managers tty ; 503 EnableWerror src add-ons kernel bus_managers usb ; 504 EnableWerror src add-ons kernel bus_managers virtio ; 505 EnableWerror src add-ons kernel busses agp_gart ; 506 EnableWerror src add-ons kernel busses ata ; 507 EnableWerror src add-ons kernel busses scsi ; 508 EnableWerror src add-ons kernel busses usb ; 509 EnableWerror src add-ons kernel console ; 510 EnableWerror src add-ons kernel cpu ; 511# EnableWerror src add-ons kernel debugger ; # gcc2 512# EnableWerror src add-ons kernel drivers audio ; 513 EnableWerror src add-ons kernel drivers bluetooth ; 514 EnableWerror src add-ons kernel drivers bus ; 515 EnableWerror src add-ons kernel drivers common ; 516 EnableWerror src add-ons kernel drivers disk ; 517 EnableWerror src add-ons kernel drivers dvb ; 518# EnableWerror src add-ons kernel drivers graphics ; 519 EnableWerror src add-ons kernel drivers graphics intel_extreme ; 520# EnableWerror src add-ons kernel drivers input ; 521 EnableWerror src add-ons kernel drivers joystick ; 522 EnableWerror src add-ons kernel drivers midi ; 523 EnableWerror src add-ons kernel drivers misc ; 524# EnableWerror src add-ons kernel drivers network ; 525 EnableWerror src add-ons kernel drivers ports ; 526# EnableWerror src add-ons kernel drivers power ; 527 EnableWerror src add-ons kernel drivers printer ; 528 EnableWerror src add-ons kernel drivers random ; 529 EnableWerror src add-ons kernel drivers tty ; 530 EnableWerror src add-ons kernel drivers video ; 531 EnableWerror src add-ons kernel file_systems bfs ; 532 EnableWerror src add-ons kernel file_systems cdda ; 533# EnableWerror src add-ons kernel file_systems ext2 ; 534# EnableWerror src add-ons kernel file_systems fat ; 535# EnableWerror src add-ons kernel file_systems googlefs ; 536 EnableWerror src add-ons kernel file_systems iso9660 ; 537 EnableWerror src add-ons kernel file_systems layers ; 538 EnableWerror src add-ons kernel file_systems netfs ; 539 EnableWerror src add-ons kernel file_systems nfs ; 540 EnableWerror src add-ons kernel file_systems nfs4 ; 541# EnableWerror src add-ons kernel file_systems ntfs ; 542 EnableWerror src add-ons kernel file_systems packagefs ; 543 EnableWerror src add-ons kernel file_systems ramfs ; 544# EnableWerror src add-ons kernel file_systems reiserfs ; 545 EnableWerror src add-ons kernel file_systems udf ; 546 EnableWerror src add-ons kernel file_systems userlandfs ; 547 EnableWerror src add-ons kernel generic ; 548# EnableWerror src add-ons kernel network datalink_protocols ; 549 EnableWerror src add-ons kernel network devices ; 550 EnableWerror src add-ons kernel network dns_resolver ; 551 EnableWerror src add-ons kernel network notifications ; 552 EnableWerror src add-ons kernel network ppp ; 553 EnableWerror src add-ons kernel network protocols ; 554# EnableWerror src add-ons kernel network stack ; 555 EnableWerror src add-ons kernel partitioning_systems ; 556 EnableWerror src add-ons kernel power ; 557 EnableWerror src add-ons locale ; 558 EnableWerror src add-ons mail_daemon ; 559 EnableWerror src add-ons media media-add-ons demultiplexer ; 560 EnableWerror src add-ons media media-add-ons dvb ; 561 EnableWerror src add-ons media media-add-ons esound_sink ; 562 EnableWerror src add-ons media media-add-ons finepix_webcam ; 563 EnableWerror src add-ons media media-add-ons firewire_dv ; 564 EnableWerror src add-ons media media-add-ons legacy ; 565 EnableWerror src add-ons media media-add-ons mixer ; 566 EnableWerror src add-ons media media-add-ons multi_audio ; 567 EnableWerror src add-ons media media-add-ons opensound ; 568 EnableWerror src add-ons media media-add-ons radeon ; 569 EnableWerror src add-ons media media-add-ons reader ; 570 EnableWerror src add-ons media media-add-ons tone_producer_demo ; 571 EnableWerror src add-ons media media-add-ons usb_vision ; 572# EnableWerror src add-ons media media-add-ons usb_webcam ; 573 EnableWerror src add-ons media media-add-ons video_mixer ; 574# EnableWerror src add-ons media media-add-ons video_producer_demo ; 575 EnableWerror src add-ons media media-add-ons videowindow ; 576 EnableWerror src add-ons media media-add-ons writer ; 577 EnableWerror src add-ons media plugins aiff_reader ; 578 EnableWerror src add-ons media plugins ape_reader ; 579# EnableWerror src add-ons media plugins asf_reader ; 580 EnableWerror src add-ons media plugins au_reader ; 581# EnableWerror src add-ons media plugins avi_reader ; 582# EnableWerror src add-ons media plugins ffmpeg ; 583# EnableWerror src add-ons media plugins matroska ; 584# EnableWerror src add-ons media plugins mov_reader ; 585 EnableWerror src add-ons media plugins mp3_decoder ; 586# EnableWerror src add-ons media plugins mp3_reader ; 587 EnableWerror src add-ons media plugins mp4_reader ; 588 EnableWerror src add-ons media plugins musepack ; 589# EnableWerror src add-ons media plugins ogg ; 590# EnableWerror src add-ons media plugins raw_decoder ; 591# EnableWerror src add-ons media plugins speex ; 592 EnableWerror src add-ons media plugins theora ; 593 EnableWerror src add-ons media plugins vorbis ; 594# EnableWerror src add-ons media plugins wav_reader ; 595 EnableWerror src add-ons print ; 596 EnableWerror src add-ons screen_savers ; 597 EnableWerror src add-ons tracker ; 598 EnableWerror src add-ons translators bmp ; 599# EnableWerror src add-ons translators exr ; 600 EnableWerror src add-ons translators gif ; 601# EnableWerror src add-ons translators hpgs ; 602 EnableWerror src add-ons translators hvif ; 603 EnableWerror src add-ons translators ico ; 604 EnableWerror src add-ons translators jpeg ; 605 EnableWerror src add-ons translators jpeg2000 ; 606 EnableWerror src add-ons translators pcx ; 607 EnableWerror src add-ons translators png ; 608 EnableWerror src add-ons translators ppm ; 609 EnableWerror src add-ons translators raw ; 610 EnableWerror src add-ons translators rtf ; 611 EnableWerror src add-ons translators sgi ; 612 EnableWerror src add-ons translators shared ; 613 EnableWerror src add-ons translators stxt ; 614 EnableWerror src add-ons translators tga ; 615 EnableWerror src add-ons translators tiff ; 616 EnableWerror src add-ons translators wonderbrush ; 617 EnableWerror src add-ons print ; 618 EnableWerror src bin desklink ; 619 EnableWerror src bin multiuser ; 620 EnableWerror src bin package ; 621 EnableWerror src bin package_repo ; 622 EnableWerror src bin pkgman ; 623 EnableWerror src libs bsd ; 624 EnableWerror src apps ; 625 EnableWerror src kits ; 626 EnableWerror src preferences ; 627 EnableWerror src servers ; 628 EnableWerror src system boot ; 629# EnableWerror src system kernel ; 630 EnableWerror src system libroot add-ons ; 631 EnableWerror src system libroot os ; 632 EnableWerror src system libroot posix locale ; 633 EnableWerror src system libroot posix wchar ; 634 EnableWerror src system runtime_loader ; 635} 636 637 638rule MultiArchIfPrimary ifValue : elseValue : architecture 639{ 640 # MultiArchIfPrimary <ifValue> : <elseValue> 641 # [ : <architecture> = $(TARGET_PACKAGING_ARCH) ] ; 642 # 643 # Returns one of the two given values depending on whether 644 # <architecture> is the primary packaging architecture. 645 646 architecture ?= $(TARGET_PACKAGING_ARCH) ; 647 648 if $(architecture) = $(TARGET_PACKAGING_ARCHS[1]) { 649 return $(ifValue) ; 650 } 651 return $(elseValue) ; 652} 653 654 655rule MultiArchConditionalGristFiles files : primaryGrist : secondaryGrist 656 : architecture 657{ 658 # MultiArchConditionalGristFiles <files> : <primaryGrist> 659 # : <secondaryGrist> [ : <architecture> = $(TARGET_PACKAGING_ARCH) ] ; 660 # 661 # Returns <files> with their grist set to either <primaryGrist> or 662 # <secondaryGrist> depending on whether <architecture> is the primary 663 # packaging architecture. 664 665 architecture ?= $(TARGET_PACKAGING_ARCH) ; 666 667 local grist = [ MultiArchIfPrimary $(primaryGrist) : $(secondaryGrist) 668 : $(architecture) ] ; 669 return $(files:G=$(grist:E=)) ; 670} 671 672 673rule MultiArchDefaultGristFiles files : gristPrefix : architecture 674{ 675 # MultiArchDefaultGristFiles <files> : <gristPrefix> 676 # [ : <architecture> = $(TARGET_PACKAGING_ARCH) ] ; 677 # 678 # Convenient shorthand for MultiArchConditionalGristFiles for the common 679 # case that for a secondary packaging architecture the packaging 680 # architecture name shall be appended to the grist while it shall be omitted 681 # for the primary packaging architecture. IOW, if architecture is the 682 # primary packaging architecture, <files> are returned with their grist set 683 # to <gristPrefix>, otherwise <files> are returned with their grist set to 684 # <gristPrefix>!<architecture> respectively <architecture> (if <gristPrefix> 685 # is empty). 686 687 architecture ?= $(TARGET_PACKAGING_ARCH) ; 688 689 local secondaryGrist = $(gristPrefix)!$(architecture) ; 690 secondaryGrist ?= $(architecture) ; 691 692 return [ MultiArchConditionalGristFiles $(files) : $(gristPrefix) : 693 $(secondaryGrist) : $(architecture) ] ; 694} 695 696 697rule MultiArchSubDirSetup architectures 698{ 699 # MultiArchSubDirSetup <architectures> ; 700 # 701 # For each of the given packaging architectures <architectures> that are 702 # in the packaging architectures configured for the build (or all configured 703 # packaging architectures, if <architectures> is empty) an object is 704 # prepared that can be used for an "on ... { ... }" block to set up subdir 705 # variables for the respective packaging architecture. Most notably 706 # TARGET_PACKAGING_ARCH, TARGET_ARCH are set to the values for the 707 # respective packaging architecture. The per-subdir variables SOURCE_GRIST, 708 # LOCATE_TARGET, LOCATE_SOURCE, SEARCH_SOURCE, *_LOCATE_TARGET, are reset. 709 # All SUBDIR* and config variables are set to the values they had when this 710 # rule was invoked. 711 712 local result ; 713 architectures ?= $(TARGET_PACKAGING_ARCHS) ; 714 local architecture ; 715 for architecture in $(architectures) { 716 if ! $(architecture) in $(TARGET_PACKAGING_ARCHS) { 717 continue ; 718 } 719 720 local architectureObject = $(architecture:G=<arch-object>) ; 721 result += $(architectureObject) ; 722 723 # Set the variables that default to the values of the respective 724 # variables for the primary architecture. 725 TARGET_PACKAGING_ARCH on $(architectureObject) = $(architecture) ; 726 727 local var ; 728 for var in TARGET_ARCH { 729 $(var) on $(architectureObject) = $($(var)_$(architecture)) ; 730 } 731 732 # Clone the current config variable values and the variables SubDir 733 # resets. 734 for var in $(AUTO_SET_UP_CONFIG_VARIABLES) SUBDIR$(SUBDIRRESET) { 735 $(var) on $(architectureObject) = $($(var)) ; 736 } 737 738 # adjust SOURCE_GRIST and HDRGRIST 739 SOURCE_GRIST on $(architectureObject) 740 = $(SOURCE_GRIST:E=)!$(architecture) ; 741 742 HDRGRIST on $(architectureObject) 743 = $(HDRGRIST:E=)!$(architecture) ; 744 745 # Adjust the subdir's object dirs that are architecture dependent. To 746 # avoid duplicating the code from SetupObjectsDir, we call it. Since it 747 # sets global variables, we set these variables on our object, call 748 # SetupObjectsDir in an "on" block, and grab the new variable values. 749 local hostTarget = HOST TARGET ; 750 local objectDirVars = 751 COMMON_ARCH COMMON_DEBUG DEBUG_$(HAIKU_DEBUG_LEVELS) 752 ; 753 objectDirVars = 754 COMMON_PLATFORM_LOCATE_TARGET 755 $(hostTarget)_$(objectDirVars)_LOCATE_TARGET 756 LOCATE_TARGET 757 LOCATE_SOURCE 758 SEARCH_SOURCE 759 ; 760 761 for var in $(objectDirVars) { 762 $(var) on $(architectureObject) = ; 763 } 764 765 on $(architectureObject) { 766 SetupObjectsDir ; 767 768 for var in $(objectDirVars) { 769 $(var) on $(architectureObject) = $($(var)) ; 770 } 771 } 772 } 773 774 return $(result) ; 775} 776