runtimer_loader/arm: implement relocationsChange-Id: Ibda978e37d6dbdaf33ac054adbbda70768fe0d97Reviewed-on: https://review.haiku-os.org/c/haiku/+/4975Tested-by: Commit checker robot <no-reply+buil
runtimer_loader/arm: implement relocationsChange-Id: Ibda978e37d6dbdaf33ac054adbbda70768fe0d97Reviewed-on: https://review.haiku-os.org/c/haiku/+/4975Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>Reviewed-by: waddlesplash <waddlesplash@gmail.com>
show more ...
runtime_loader: define _LOADER_MODE for arch directoriesChange-Id: I7eb6b77502eed76a529657d9ec733b72c9fc89c0Reviewed-on: https://review.haiku-os.org/c/haiku/+/3275Reviewed-by: Jérôme Duval <jerom
runtime_loader: define _LOADER_MODE for arch directoriesChange-Id: I7eb6b77502eed76a529657d9ec733b72c9fc89c0Reviewed-on: https://review.haiku-os.org/c/haiku/+/3275Reviewed-by: Jérôme Duval <jerome.duval@gmail.com>
runtime_loader: add hybrid support.
kernel, libroot: use C++11 atomics in atomic_*()The less assembler in our sources the better. These functions wouldn'tbe used very much since SupportDef.h inlines them, but the symbols shouldbe a
kernel, libroot: use C++11 atomics in atomic_*()The less assembler in our sources the better. These functions wouldn'tbe used very much since SupportDef.h inlines them, but the symbols shouldbe available.Signed-off-by: Paweł Dziepak <pdziepak@quarnos.org>
runtime_loader: Add __dso_handle.The symbol is needed for global objects. Usually, GCC also requiresthis, but for some reason, the linking error only occurs when usingClang.Signed-off-by: Jérôm
runtime_loader: Add __dso_handle.The symbol is needed for global objects. Usually, GCC also requiresthis, but for some reason, the linking error only occurs when usingClang.Signed-off-by: Jérôme Duval <jerome.duval@gmail.com>
More work towards hybrid support* All packaging architecture dependent variables do now have a respective suffix and are set up for each configured packaging architecture, save for the kernel a
More work towards hybrid support* All packaging architecture dependent variables do now have a respective suffix and are set up for each configured packaging architecture, save for the kernel and boot loader variables, which are still only set up for the primary architecture. For convenience TARGET_PACKAGING_ARCH, TARGET_ARCH, TARGET_LIBSUPC++, and TARGET_LIBSTDC++ are set to the respective values for the primary packaging architecture by default.* Introduce a set of MultiArch* rules to help with building targets for multiple packaging architectures. Generally the respective targets are (additionally) gristed with the packaging architecture. For libraries the additional grist is usually omitted for the primary architecture (e.g. libroot.so and <x86>libroot.so for x86_gcc2/x86 hybrid), so that Jamfiles for targets built only for the primary architecture don't need to be changed.* Add multi-arch build support for all targets needed for the stage 1 cross devel package as well as for libbe (untested).
ARM/runtime_loader: add stub to make it compile