From 2b68a11d2a777fe3cd7e13ef6972a38154ab6ee7 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sat, 3 Nov 2018 11:17:04 -0700 Subject: tinyemu: Add missing dependency on libcrypto --- pkg/tinyemu/gen.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'pkg') diff --git a/pkg/tinyemu/gen.lua b/pkg/tinyemu/gen.lua index de2b39f1..4fa1402a 100644 --- a/pkg/tinyemu/gen.lua +++ b/pkg/tinyemu/gen.lua @@ -5,9 +5,13 @@ cflags{ '-D CONFIG_SLIRP', [[-D 'CONFIG_VERSION="2018-09-23"']], '-I $builddir/pkg/curl/include', + '-I $builddir/pkg/libressl/include', } -pkg.deps = {'pkg/curl/headers'} +pkg.deps = { + 'pkg/curl/headers', + 'pkg/libressl/headers', +} build('cc', '$outdir/riscv_cpu32.o', '$srcdir/riscv_cpu.c', {cflags='$cflags -DMAX_XLEN=32'}) build('cc', '$outdir/riscv_cpu64.o', '$srcdir/riscv_cpu.c', {cflags='$cflags -DMAX_XLEN=64'}) @@ -24,6 +28,7 @@ exe('temu', [[ riscv_machine.c softfp.c riscv_cpu32.o riscv_cpu64.o x86_cpu.c x86_machine.c ide.c ps2.c vmmouse.c pckbd.c vga.c $builddir/pkg/curl/libcurl.a.d + $builddir/pkg/libressl/libcrypto.a.d ]]) file('bin/temu', '755', '$outdir/temu') -- cgit v1.2.3