aboutsummaryrefslogtreecommitdiffstats
path: root/prog/little_endian.go
Commit message (Collapse)AuthorAgeFilesLines
* all: go fix everythingDmitry Vyukov2024-04-261-1/+0
|
* pkg: update generated files to go 1.17Alexey Kardashevskiy2021-07-071-0/+1
| | | | | | | | | | | "make generate" produces this diff when go 1.17 (go1.17-c95464f0ea3f==upstream) is used. Seems compatible with >=1.16. https://github.com/golang/go/commit/4d2d89ff42ca documents the syntax. https://github.com/golang/go/commit/eeadce2d8713 enforces "ignore" for unsatisfiable tags hence the pkg/csource/gen.go change. Signed-off-by: Alexey Kardashevskiy <aik@linux.ibm.com>
* prog: add support for riscv64Tobias Klauser2020-06-251-1/+1
| | | | | | This will allow to run `make TARGETVMARCH=riscv64`. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
* ipc: fix endianness issuesAlexander Egorenkov2020-06-231-0/+10
Use native byte-order for IPC and program serialization. This way we will be able to support both little- and big-endian architectures. Signed-off-by: Alexander Egorenkov <Alexander.Egorenkov@ibm.com>