This commit is contained in:
parent
d1d549f8dd
commit
66f304fc81
2 changed files with 4 additions and 4 deletions
|
@ -10,13 +10,13 @@ jobs:
|
|||
- name: Install toolchain
|
||||
run: apt install -y gcc-x86-64-linux-gnu gcc-aarch64-linux-gnu make
|
||||
- name: Install dependencies
|
||||
run: apt install -y libelf1
|
||||
run: apt install -y libelf-dev
|
||||
- name: Clone repository
|
||||
run: git clone https://git.m724.eu/Minecon724/criscv.git .
|
||||
- name: Package for x86_64
|
||||
run: CC=x86_64-linux-gnu-gcc PROGRAM_NAME=crisc-x86_64 make
|
||||
run: LD_LIBRARY_PATH=/usr/include CC=x86_64-linux-gnu-gcc PROGRAM_NAME=crisc-x86_64 make
|
||||
- name: Package for aarch64
|
||||
run: CC=aarch64-linux-gnu-gcc PROGRAM_NAME=crisc-aarch64 make
|
||||
run: LD_LIBRARY_PATH=/usr/include CC=aarch64-linux-gnu-gcc PROGRAM_NAME=crisc-aarch64 make
|
||||
- name: Upload artifact
|
||||
uses: https://github.com/actions/upload-artifact@v4
|
||||
with:
|
||||
|
|
2
Makefile
2
Makefile
|
@ -1,7 +1,7 @@
|
|||
# Compiler to use
|
||||
CC ?= gcc
|
||||
|
||||
CFLAGS = -Wall -Wextra -std=gnu23 -I include -I /usr/include
|
||||
CFLAGS = -Wall -Wextra -std=gnu23 -I include
|
||||
LDFLAGS = -lelf
|
||||
|
||||
# Directory for build outputs
|
||||
|
|
Loading…
Reference in a new issue