summaryrefslogtreecommitdiff
path: root/arch/arm/src/atomics.s
AgeCommit message (Collapse)AuthorLines
2016-01-22move arm-specific translation units out of arch/arm/src, to src/*/armRich Felker-111/+0
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.
2016-01-20fix build regression for arm pre-v7 from out-of-tree build patchRich Felker-0/+111
commit 2f853dd6b9a95d5b13ee8f9df762125e0588df5d failed to replicate the old makefile logic that caused arch/arm/src/arm/atomics.s to be built. since this was the only .s file under arch/*/src, rather than trying to reproduce the old logic, I'm just moving it up a level and adjusting the glob pattern in the makefile to catch it. eventually arch/*/src will probably be removed in favor of moving all these files to appropriate src/*/$(ARCH) locations.