svg-flatten: Bump WASI SDK to v20 and fix build

main
jaseg 2023-04-16 14:19:12 +02:00
rodzic 0ae1da08cc
commit 348409a29e
4 zmienionych plików z 6 dodań i 3 usunięć

Wyświetl plik

@ -10,8 +10,8 @@ CACHEDIR ?= cache
PREFIX ?= /usr/local
UPSTREAM_DIR ?= upstream
WASI_SDK ?= wasi-sdk-11.0
WASI_SDK_URL ?= https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-11/wasi-sdk-11.0-linux.tar.gz
WASI_SDK ?= wasi-sdk-20.0
WASI_SDK_URL ?= https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-20/wasi-sdk-20.0-linux.tar.gz
WASI_SDK_PATH ?= $(CACHEDIR)/$(WASI_SDK)
WASI_CXX ?= $(WASI_SDK_PATH)/bin/clang++ --sysroot=$(WASI_SDK_PATH)/share/wasi-sysroot

Wyświetl plik

@ -1,7 +1,9 @@
#include <cstdlib>
#include <cstdio>
#ifndef WASI
#include <filesystem>
#endif
#include <iostream>
#include <iomanip>
#include <fstream>

Wyświetl plik

@ -19,6 +19,7 @@
#include <iostream>
#include <fstream>
#include <cmath>
#include <numbers>
#include <gerbolyze.hpp>
#include "svg_import_defs.h"

Wyświetl plik

@ -7,8 +7,8 @@
#ifndef NOFORK
#include <pwd.h>
#include <subprocess.h>
#endif
#include <filesystem>
#endif
#include "util.h"