Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-01-30 | fix misaligned pointer-like objects in arm atomics asm source file | Rich Felker | 1 | -0/+2 | |
this file's .data section was not aligned, and just happened to get the correct alignment with past builds. it's likely that the move of atomic.s from arch/arm/src to src/thread/arm caused the change in alignment, which broke the atomic and thread-pointer access fragments on actual armv5 hardware. | |||||
2016-01-22 | move arm-specific translation units out of arch/arm/src, to src/*/arm | Rich Felker | 1 | -0/+111 | |
this is possible with the new build system that allows src/*/$(ARCH)/* files which do not shadow a file in the parent directory, and yields a more logical organization. eventually it will be possible to remove arch/*/src from the build system. |