mirror of
https://github.com/open-quantum-safe/liboqs.git
synced 2025-10-08 00:03:38 -04:00
* Scripts for ARM build * Set permissions * Fix ARM script bugs * Fix typo * Tweak ARM build * Update README with ARM build instructions
14 lines
346 B
Bash
Executable File
14 lines
346 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# sudo apt-get install qemu
|
|
|
|
set -e
|
|
|
|
CHOST=arm-linux-gnueabi
|
|
|
|
qemu-arm -cpu cortex-a8 -L /usr/arm-linux-gnueabi tests/example_kem
|
|
qemu-arm -cpu cortex-a8 -L /usr/arm-linux-gnueabi tests/test_kem
|
|
|
|
# qemu-arm -cpu cortex-a8 -L /usr/arm-linux-gnueabi tests/example_sig
|
|
# qemu-arm -cpu cortex-a8 -L /usr/arm-linux-gnueabi tests/test_sig
|