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