summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/system_cmds
Commit message (Collapse)AuthorAge
* treewide: fix string escapesvolth2019-09-16
|
* treewide: remove redundant recvolth2019-08-28
|
* pkgs/*: remove unreferenced function argumentsvolth2018-07-21
|
* treewide: isArm -> isAarch32John Ericson2018-04-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Following legacy packing conventions, `isArm` was defined just for 32-bit ARM instruction set. This is confusing to non packagers though, because Aarch64 is an ARM instruction set. The official ARM overview for ARMv8[1] is surprisingly not confusing, given the overall state of affairs for ARM naming conventions, and offers us a solution. It divides the nomenclature into three levels: ``` ISA: ARMv8 {-A, -R, -M} / \ Mode: Aarch32 Aarch64 | / \ Encoding: A64 A32 T32 ``` At the top is the overall v8 instruction set archicture. Second are the two modes, defined by bitwidth but differing in other semantics too, and buttom are the encodings, (hopefully?) isomorphic if they encode the same mode. The 32 bit encodings are mostly backwards compatible with previous non-Thumb and Thumb encodings, and if so we can pun the mode names to instead mean "sets of compatable or isomorphic encodings", and then voilĂ  we have nice names for 32-bit and 64-bit arm instruction sets which do not use the word ARM so as to not confused either laymen or experienced ARM packages. [1]: https://developer.arm.com/products/architecture/a-profile
* system_cmds: build more commandsMatthew Bauer2018-04-10
| | | | Now includes getconf
* Add system_cmds apple projectShea Levy2017-10-11
Actually just build sysctl for now, as xcbuild segfaults.