Skip to content

Instantly share code, notes, and snippets.

@tyhdefu
Created May 2, 2022 09:54
Show Gist options
  • Save tyhdefu/ab577b6e2a54e8a3ce21a8eadcacc3bb to your computer and use it in GitHub Desktop.
Save tyhdefu/ab577b6e2a54e8a3ce21a8eadcacc3bb to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
env --unset=RUST_TARGET_PATH --unset=RUSTUP_TOOLCHAIN --unset=XARGO_RUST_SRC \
make -C bootloader build/x86-unknown-none/bootloader.bin TARGET=x86-unknown-none
make[1]: Entering directory '/home/tyhdefu/redox/bootloader'
make[1]: 'build/x86-unknown-none/bootloader.bin' is up to date.
make[1]: Leaving directory '/home/tyhdefu/redox/bootloader'
cargo build --manifest-path cookbook/Cargo.toml --release
warning: associated function is never used: `new`
--> src/progress_bar.rs:33:12
|
33 | pub fn new(pb: &'p mut ProgressBar<P>, w: &'w mut W) -> ProgressBarWrite<'p, 'w, P, W> {
| ^^^
|
= note: `#[warn(dead_code)]` on by default
warning: `redox_cookbook` (lib) generated 1 warning
warning: unused variable: `upstream`
--> src/bin/cook.rs:206:25
|
206 | if let Some(upstream) = upstream {
| ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_upstream`
|
= note: `#[warn(unused_variables)]` on by default
warning: unused variable: `package`
--> src/bin/cook.rs:556:49
|
556 | fn package(recipe_dir: &Path, stage_dir: &Path, package: &PackageRecipe) -> Result<PathBuf, String> {
| ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_package`
warning: unused variable: `package_file`
--> src/bin/cook.rs:613:9
|
613 | let package_file = package(&recipe_dir, &stage_dir, &recipe.package).map_err(|err| format!(
| ^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_package_file`
warning: `redox_cookbook` (bin "cook") generated 3 warnings
Finished release [optimized] target(s) in 0.07s
cargo build --manifest-path installer/Cargo.toml --release
warning: function is never used: `unwrap_or_prompt`
--> src/lib.rs:58:4
|
58 | fn unwrap_or_prompt<T: FromStr>(option: Option<T>, context: &mut liner::Context, prompt: &str) -> Result<T> {
| ^^^^^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
warning: `redox_installer` (lib) generated 1 warning
Finished release [optimized] target(s) in 0.06s
cargo build --manifest-path redoxfs/Cargo.toml --release
warning: variable does not need to be mutable
--> src/archive.rs:116:17
|
116 | let mut end_block = tx.header.size() / BLOCK_SIZE;
| ----^^^^^^^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
warning: `redoxfs` (lib) generated 1 warning
Finished release [optimized] target(s) in 0.02s
fusermount -u build/filesystem/ || true
rm -rf build/filesystem.bin build/filesystem.bin.partial build/filesystem/
fallocate --posix --length "256MiB" build/filesystem.bin.partial
cargo run --release \
--manifest-path redoxfs/Cargo.toml \
--bin redoxfs-mkfs \
-- build/filesystem.bin.partial
warning: variable does not need to be mutable
--> src/archive.rs:116:17
|
116 | let mut end_block = tx.header.size() / BLOCK_SIZE;
| ----^^^^^^^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
warning: `redoxfs` (lib) generated 1 warning
Finished release [optimized] target(s) in 0.02s
Running `redoxfs/target/release/redoxfs-mkfs build/filesystem.bin.partial`
redoxfs-mkfs: created filesystem on build/filesystem.bin.partial, reserved 0 blocks, size 268 MB, uuid ffac416c-5c42-4ff6-80ea-09bf502be91c
mkdir -p build/filesystem/
redoxfs/target/release/redoxfs build/filesystem.bin.partial build/filesystem/
redoxfs: opening build/filesystem.bin.partial
redoxfs: opened filesystem on build/filesystem.bin.partial with uuid ffac416c-5c42-4ff6-80ea-09bf502be91c
redoxfs: mounted filesystem on build/filesystem.bin.partial to build/filesystem/
sleep 2
pgrep redoxfs
546841
cp -v filesystem.toml build/filesystem/filesystem.toml
'filesystem.toml' -> 'build/filesystem/filesystem.toml'
cp -v build/bootloader.bin build/filesystem/bootloader
'build/bootloader.bin' -> 'build/filesystem/bootloader'
cp -v build/kernel build/filesystem/kernel
'build/kernel' -> 'build/filesystem/kernel'
mkdir -v build/filesystem/pkg
mkdir: created directory 'build/filesystem/pkg'
cp -v cookbook/build/id_ed25519.pub.toml build/filesystem/pkg/id_ed25519.pub.toml
'cookbook/build/id_ed25519.pub.toml' -> 'build/filesystem/pkg/id_ed25519.pub.toml'
#TODO cp -r /home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/x86_64-unknown-redox/include build/filesystem/include
#TODO cp -r /home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/x86_64-unknown-redox/lib build/filesystem/lib
export PATH="/home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/bin:$PATH" && installer/target/release/redox_installer --cookbook=cookbook -c filesystem.toml build/filesystem/
Install Config {
general: GeneralConfig {
prompt: false,
},
packages: {
"audiod": PackageConfig {
version: None,
git: None,
path: None,
},
"ca-certificates": PackageConfig {
version: None,
git: None,
path: None,
},
"contain": PackageConfig {
version: None,
git: None,
path: None,
},
"coreutils": PackageConfig {
version: None,
git: None,
path: None,
},
"dash": PackageConfig {
version: None,
git: None,
path: None,
},
"diffutils": PackageConfig {
version: None,
git: None,
path: None,
},
"drivers": PackageConfig {
version: None,
git: None,
path: None,
},
"extrautils": PackageConfig {
version: None,
git: None,
path: None,
},
"findutils": PackageConfig {
version: None,
git: None,
path: None,
},
"gdbserver": PackageConfig {
version: None,
git: None,
path: None,
},
"gnu-make": PackageConfig {
version: None,
git: None,
path: None,
},
"installer": PackageConfig {
version: None,
git: None,
path: None,
},
"ion": PackageConfig {
version: None,
git: None,
path: None,
},
"ipcd": PackageConfig {
version: None,
git: None,
path: None,
},
"netdb": PackageConfig {
version: None,
git: None,
path: None,
},
"netstack": PackageConfig {
version: None,
git: None,
path: None,
},
"netsurf": PackageConfig {
version: None,
git: None,
path: None,
},
"netutils": PackageConfig {
version: None,
git: None,
path: None,
},
"orbdata": PackageConfig {
version: None,
git: None,
path: None,
},
"orbital": PackageConfig {
version: None,
git: None,
path: None,
},
"orbterm": PackageConfig {
version: None,
git: None,
path: None,
},
"orbutils": PackageConfig {
version: None,
git: None,
path: None,
},
"pkgutils": PackageConfig {
version: None,
git: None,
path: None,
},
"ptyd": PackageConfig {
version: None,
git: None,
path: None,
},
"redoxfs": PackageConfig {
version: None,
git: None,
path: None,
},
"resist": PackageConfig {
version: None,
git: None,
path: None,
},
"smith": PackageConfig {
version: None,
git: None,
path: None,
},
"strace": PackageConfig {
version: None,
git: None,
path: None,
},
"terminfo": PackageConfig {
version: None,
git: None,
path: None,
},
"userutils": PackageConfig {
version: None,
git: None,
path: None,
},
"uutils": PackageConfig {
version: None,
git: None,
path: None,
},
"vim": PackageConfig {
version: None,
git: None,
path: None,
},
},
files: [
FileConfig {
path: "/etc/init.d/00_base",
data: "ipcd\nptyd\npcid /etc/pcid.d/\n",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/etc/init.d/10_net",
data: "smolnetd\ndnsd\ndhcpd -b\n",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/etc/init.d/20_orbital",
data: "audiod\norbital display:3/activate orblogin launcher\n",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/etc/init.d/30_console",
data: "getty display:2\ngetty debug: -J\n",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/etc/net/dns",
data: "208.67.222.222\n",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/etc/net/ip",
data: "10.0.2.15\n",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/etc/net/ip_router",
data: "10.0.2.2\n",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/etc/net/ip_subnet",
data: "255.255.255.0\n",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/etc/net/mac",
data: "54-52-00-ab-cd-ef\n",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/etc/pkg.d/50_redox",
data: "https://static.redox-os.org/pkg",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/etc/redox-release",
data: "0.7.0",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/etc/group",
data: "root;0;root\nuser;1000;user\nsudo;1;user\n",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/etc/hostname",
data: "redox\n",
symlink: false,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/usr/bin",
data: "../bin",
symlink: true,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/usr/games",
data: "../games",
symlink: true,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/usr/include",
data: "../include",
symlink: true,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/usr/lib",
data: "../lib",
symlink: true,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/usr/share",
data: "../share",
symlink: true,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/tmp",
data: "",
symlink: false,
directory: true,
mode: Some(
1023,
),
uid: None,
gid: None,
},
FileConfig {
path: "/dev/null",
data: "null:",
symlink: true,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/dev/random",
data: "rand:",
symlink: true,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/dev/urandom",
data: "rand:",
symlink: true,
directory: false,
mode: None,
uid: None,
gid: None,
},
FileConfig {
path: "/dev/zero",
data: "zero:",
symlink: true,
directory: false,
mode: None,
uid: None,
gid: None,
},
],
users: {
"root": UserConfig {
password: Some(
"password",
),
uid: Some(
0,
),
gid: Some(
0,
),
name: Some(
"root",
),
home: Some(
"/root",
),
shell: None,
},
"user": UserConfig {
password: Some(
"",
),
uid: None,
gid: None,
name: None,
home: None,
shell: None,
},
},
} to build/filesystem/
cook - audiod
cook - audiod - successful
cook - ca-certificates
cook - ca-certificates - successful
cook - contain
cook - contain - successful
cook - coreutils
cook - coreutils - successful
cook - dash
cook - dash - successful
repo - diffutils up to date
cook - drivers
cook - drivers - successful
cook - xz
cook - xz - successful
cook - extrautils
cook - extrautils - successful
cook - findutils
cook - findutils - successful
cook - gdbserver
Synchronizing submodule url for 'rust-gdb-remote-protocol'
cook - gdbserver - successful
repo - gnu-make up to date
cook - installer
cook - installer - successful
cook - ion
cook - ion - successful
cook - ipcd
cook - ipcd - successful
cook - netdb
cook - netdb - successful
cook - netstack
Synchronizing submodule url for 'smoltcp'
cook - netstack - successful
repo - building netsurf
cook - netsurf build
make[1]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/bin
make install --directory=buildsystem HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/share/netsurf-buildsystem/makefiles /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/share/netsurf-buildsystem/testtools /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/share/netsurf-buildsystem/citools
for M in Makefile.top Makefile.tools Makefile.subdir Makefile.pkgconfig Makefile.clang Makefile.gcc Makefile.norcroft Makefile.open64; do \
cp makefiles/$M /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/share/netsurf-buildsystem/makefiles/; \
done
for T in testrunner.pl; do \
cp testtools/$T /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/share/netsurf-buildsystem/testtools/; \
done
for C in jenkins-build.sh; do \
cp citools/$C /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/share/netsurf-buildsystem/citools/; \
done
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/buildsystem'
make install --directory=libnslog HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/nslog
install -m 644 include/nslog/nslog.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/nslog
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libnslog.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnslog.pc"
sed -e... libnslog.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnslog.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#1#' -e 's#PATCH#0#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.1.0#' -e 's#REQUIRED##' -e 's#LIBRARIES#-lnslog#' libnslog.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnslog.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnslog.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libnslog.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnslog.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libnslog'
make install --directory=libwapcaplet HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libwapcaplet
install -m 644 include/libwapcaplet/libwapcaplet.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libwapcaplet
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libwapcaplet.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libwapcaplet.pc"
sed -e... libwapcaplet.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libwapcaplet.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#4#' -e 's#PATCH#0#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.4.0#' -e 's#REQUIRED##' -e 's#LIBRARIES##' libwapcaplet.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libwapcaplet.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libwapcaplet.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libwapcaplet.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libwapcaplet.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libwapcaplet'
make install --directory=libparserutils HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils
install -m 644 include/parserutils/errors.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils
install -m 644 include/parserutils/functypes.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils
install -m 644 include/parserutils/parserutils.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils
install -m 644 include/parserutils/types.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils/charset
install -m 644 include/parserutils/charset/codec.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils/charset
install -m 644 include/parserutils/charset/mibenum.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils/charset
install -m 644 include/parserutils/charset/utf16.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils/charset
install -m 644 include/parserutils/charset/utf8.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils/charset
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils/input
install -m 644 include/parserutils/input/inputstream.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils/input
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils/utils
install -m 644 include/parserutils/utils/buffer.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils/utils
install -m 644 include/parserutils/utils/stack.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils/utils
install -m 644 include/parserutils/utils/vector.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/parserutils/utils
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libparserutils.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libparserutils.pc"
sed -e... libparserutils.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libparserutils.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#2#' -e 's#PATCH#3#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.2.3#' -e 's#REQUIRED##' -e 's#LIBRARIES##' libparserutils.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libparserutils.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libparserutils.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libparserutils.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libparserutils.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libparserutils'
make install --directory=libcss HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
COMPILE: src/stylesheet.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_stylesheet.o -c src/stylesheet.c
COMPILE: src/charset/detect.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_charset_detect.o -c src/charset/detect.c
COMPILE: src/lex/lex.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_lex_lex.o -c src/lex/lex.c
COMPILE: src/parse/parse.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_parse.o -c src/parse/parse.c
src/parse/parse.c: In function 'parseMalformedAtRule':
src/parse/parse.c:2298:19: warning: this statement may fall through [-Wimplicit-fallthrough=]
state->substate = Go;
~~~~~~~~~~~~~~~~^~~~
src/parse/parse.c:2301:2: note: here
case Go:
^~~~
src/parse/parse.c: In function 'parseMalformedDeclaration':
src/parse/parse.c:2100:19: warning: this statement may fall through [-Wimplicit-fallthrough=]
state->substate = Go;
~~~~~~~~~~~~~~~~^~~~
src/parse/parse.c:2103:2: note: here
case Go:
^~~~
COMPILE: src/parse/language.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_language.o -c src/parse/language.c
COMPILE: src/parse/important.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_important.o -c src/parse/important.c
COMPILE: src/parse/propstrings.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_propstrings.o -c src/parse/propstrings.c
COMPILE: src/parse/font_face.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_font_face.o -c src/parse/font_face.c
COMPILE: src/parse/properties/azimuth.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_azimuth.o -c src/parse/properties/azimuth.c
COMPILE: src/parse/properties/background.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_background.o -c src/parse/properties/background.c
COMPILE: src/parse/properties/background_position.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_background_position.o -c src/parse/properties/background_position.c
COMPILE: src/parse/properties/border.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_border.o -c src/parse/properties/border.c
COMPILE: src/parse/properties/border_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_border_color.o -c src/parse/properties/border_color.c
COMPILE: src/parse/properties/border_spacing.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_border_spacing.o -c src/parse/properties/border_spacing.c
COMPILE: src/parse/properties/border_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_border_style.o -c src/parse/properties/border_style.c
COMPILE: src/parse/properties/border_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_border_width.o -c src/parse/properties/border_width.c
COMPILE: src/parse/properties/clip.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_clip.o -c src/parse/properties/clip.c
COMPILE: src/parse/properties/columns.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_columns.o -c src/parse/properties/columns.c
COMPILE: src/parse/properties/column_rule.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_column_rule.o -c src/parse/properties/column_rule.c
COMPILE: src/parse/properties/content.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_content.o -c src/parse/properties/content.c
COMPILE: src/parse/properties/cue.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_cue.o -c src/parse/properties/cue.c
COMPILE: src/parse/properties/cursor.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_cursor.o -c src/parse/properties/cursor.c
COMPILE: src/parse/properties/elevation.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_elevation.o -c src/parse/properties/elevation.c
COMPILE: src/parse/properties/font.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_font.o -c src/parse/properties/font.c
COMPILE: src/parse/properties/font_family.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_font_family.o -c src/parse/properties/font_family.c
COMPILE: src/parse/properties/font_weight.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_font_weight.o -c src/parse/properties/font_weight.c
COMPILE: src/parse/properties/list_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_list_style.o -c src/parse/properties/list_style.c
COMPILE: src/parse/properties/list_style_type.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_list_style_type.o -c src/parse/properties/list_style_type.c
COMPILE: src/parse/properties/margin.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_margin.o -c src/parse/properties/margin.c
COMPILE: src/parse/properties/opacity.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_opacity.o -c src/parse/properties/opacity.c
COMPILE: src/parse/properties/outline.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_outline.o -c src/parse/properties/outline.c
COMPILE: src/parse/properties/overflow.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_overflow.o -c src/parse/properties/overflow.c
COMPILE: src/parse/properties/padding.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_padding.o -c src/parse/properties/padding.c
COMPILE: src/parse/properties/pause.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_pause.o -c src/parse/properties/pause.c
COMPILE: src/parse/properties/play_during.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_play_during.o -c src/parse/properties/play_during.c
COMPILE: src/parse/properties/properties.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_properties.o -c src/parse/properties/properties.c
COMPILE: src/parse/properties/quotes.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_quotes.o -c src/parse/properties/quotes.c
COMPILE: src/parse/properties/text_decoration.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_text_decoration.o -c src/parse/properties/text_decoration.c
COMPILE: src/parse/properties/utils.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_utils.o -c src/parse/properties/utils.c
COMPILE: src/parse/properties/voice_family.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_voice_family.o -c src/parse/properties/voice_family.c
COMPILE: src/parse/properties/autogenerated_background_repeat.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_background_repeat.o -c src/parse/properties/autogenerated_background_repeat.c
COMPILE: src/parse/properties/autogenerated_border_collapse.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_collapse.o -c src/parse/properties/autogenerated_border_collapse.c
COMPILE: src/parse/properties/autogenerated_cue_after.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_cue_after.o -c src/parse/properties/autogenerated_cue_after.c
COMPILE: src/parse/properties/autogenerated_cue_before.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_cue_before.o -c src/parse/properties/autogenerated_cue_before.c
COMPILE: src/parse/properties/autogenerated_direction.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_direction.o -c src/parse/properties/autogenerated_direction.c
COMPILE: src/parse/properties/autogenerated_display.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_display.o -c src/parse/properties/autogenerated_display.c
COMPILE: src/parse/properties/autogenerated_empty_cells.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_empty_cells.o -c src/parse/properties/autogenerated_empty_cells.c
COMPILE: src/parse/properties/autogenerated_float.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_float.o -c src/parse/properties/autogenerated_float.c
COMPILE: src/parse/properties/autogenerated_font_size.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_font_size.o -c src/parse/properties/autogenerated_font_size.c
COMPILE: src/parse/properties/autogenerated_font_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_font_style.o -c src/parse/properties/autogenerated_font_style.c
COMPILE: src/parse/properties/autogenerated_font_variant.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_font_variant.o -c src/parse/properties/autogenerated_font_variant.c
COMPILE: src/parse/properties/autogenerated_height.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_height.o -c src/parse/properties/autogenerated_height.c
COMPILE: src/parse/properties/autogenerated_letter_spacing.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_letter_spacing.o -c src/parse/properties/autogenerated_letter_spacing.c
COMPILE: src/parse/properties/autogenerated_line_height.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_line_height.o -c src/parse/properties/autogenerated_line_height.c
COMPILE: src/parse/properties/autogenerated_border_top.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_top.o -c src/parse/properties/autogenerated_border_top.c
COMPILE: src/parse/properties/autogenerated_border_bottom.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_bottom.o -c src/parse/properties/autogenerated_border_bottom.c
COMPILE: src/parse/properties/autogenerated_border_left.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_left.o -c src/parse/properties/autogenerated_border_left.c
COMPILE: src/parse/properties/autogenerated_border_right.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_right.o -c src/parse/properties/autogenerated_border_right.c
COMPILE: src/parse/properties/autogenerated_max_height.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_max_height.o -c src/parse/properties/autogenerated_max_height.c
COMPILE: src/parse/properties/autogenerated_max_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_max_width.o -c src/parse/properties/autogenerated_max_width.c
COMPILE: src/parse/properties/autogenerated_min_height.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_min_height.o -c src/parse/properties/autogenerated_min_height.c
COMPILE: src/parse/properties/autogenerated_min_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_min_width.o -c src/parse/properties/autogenerated_min_width.c
COMPILE: src/parse/properties/autogenerated_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_color.o -c src/parse/properties/autogenerated_color.c
COMPILE: src/parse/properties/autogenerated_padding_side.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_padding_side.o -c src/parse/properties/autogenerated_padding_side.c
COMPILE: src/parse/properties/autogenerated_padding_bottom.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_padding_bottom.o -c src/parse/properties/autogenerated_padding_bottom.c
COMPILE: src/parse/properties/autogenerated_padding_left.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_padding_left.o -c src/parse/properties/autogenerated_padding_left.c
COMPILE: src/parse/properties/autogenerated_padding_top.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_padding_top.o -c src/parse/properties/autogenerated_padding_top.c
COMPILE: src/parse/properties/autogenerated_padding_right.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_padding_right.o -c src/parse/properties/autogenerated_padding_right.c
COMPILE: src/parse/properties/autogenerated_margin_side.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_margin_side.o -c src/parse/properties/autogenerated_margin_side.c
COMPILE: src/parse/properties/autogenerated_margin_top.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_margin_top.o -c src/parse/properties/autogenerated_margin_top.c
COMPILE: src/parse/properties/autogenerated_margin_bottom.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_margin_bottom.o -c src/parse/properties/autogenerated_margin_bottom.c
COMPILE: src/parse/properties/autogenerated_margin_left.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_margin_left.o -c src/parse/properties/autogenerated_margin_left.c
COMPILE: src/parse/properties/autogenerated_margin_right.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_margin_right.o -c src/parse/properties/autogenerated_margin_right.c
COMPILE: src/parse/properties/autogenerated_side.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_side.o -c src/parse/properties/autogenerated_side.c
COMPILE: src/parse/properties/autogenerated_top.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_top.o -c src/parse/properties/autogenerated_top.c
COMPILE: src/parse/properties/autogenerated_bottom.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_bottom.o -c src/parse/properties/autogenerated_bottom.c
COMPILE: src/parse/properties/autogenerated_left.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_left.o -c src/parse/properties/autogenerated_left.c
COMPILE: src/parse/properties/autogenerated_right.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_right.o -c src/parse/properties/autogenerated_right.c
COMPILE: src/parse/properties/autogenerated_border_side_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_side_width.o -c src/parse/properties/autogenerated_border_side_width.c
COMPILE: src/parse/properties/autogenerated_border_top_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_top_width.o -c src/parse/properties/autogenerated_border_top_width.c
COMPILE: src/parse/properties/autogenerated_border_bottom_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_bottom_width.o -c src/parse/properties/autogenerated_border_bottom_width.c
COMPILE: src/parse/properties/autogenerated_border_left_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_left_width.o -c src/parse/properties/autogenerated_border_left_width.c
COMPILE: src/parse/properties/autogenerated_border_right_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_right_width.o -c src/parse/properties/autogenerated_border_right_width.c
COMPILE: src/parse/properties/autogenerated_border_side_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_side_style.o -c src/parse/properties/autogenerated_border_side_style.c
COMPILE: src/parse/properties/autogenerated_border_top_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_top_style.o -c src/parse/properties/autogenerated_border_top_style.c
COMPILE: src/parse/properties/autogenerated_border_bottom_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_bottom_style.o -c src/parse/properties/autogenerated_border_bottom_style.c
COMPILE: src/parse/properties/autogenerated_border_left_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_left_style.o -c src/parse/properties/autogenerated_border_left_style.c
COMPILE: src/parse/properties/autogenerated_border_right_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_right_style.o -c src/parse/properties/autogenerated_border_right_style.c
COMPILE: src/parse/properties/autogenerated_border_side_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_side_color.o -c src/parse/properties/autogenerated_border_side_color.c
COMPILE: src/parse/properties/autogenerated_border_top_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_top_color.o -c src/parse/properties/autogenerated_border_top_color.c
COMPILE: src/parse/properties/autogenerated_border_bottom_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_bottom_color.o -c src/parse/properties/autogenerated_border_bottom_color.c
COMPILE: src/parse/properties/autogenerated_border_left_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_left_color.o -c src/parse/properties/autogenerated_border_left_color.c
COMPILE: src/parse/properties/autogenerated_border_right_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_right_color.o -c src/parse/properties/autogenerated_border_right_color.c
COMPILE: src/parse/properties/autogenerated_counter_increment.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_counter_increment.o -c src/parse/properties/autogenerated_counter_increment.c
COMPILE: src/parse/properties/autogenerated_counter_reset.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_counter_reset.o -c src/parse/properties/autogenerated_counter_reset.c
COMPILE: src/parse/properties/autogenerated_background_attachment.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_background_attachment.o -c src/parse/properties/autogenerated_background_attachment.c
COMPILE: src/parse/properties/autogenerated_background_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_background_color.o -c src/parse/properties/autogenerated_background_color.c
COMPILE: src/parse/properties/autogenerated_caption_side.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_caption_side.o -c src/parse/properties/autogenerated_caption_side.c
COMPILE: src/parse/properties/autogenerated_clear.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_clear.o -c src/parse/properties/autogenerated_clear.c
COMPILE: src/parse/properties/autogenerated_background_image.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_background_image.o -c src/parse/properties/autogenerated_background_image.c
COMPILE: src/parse/properties/autogenerated_list_style_image.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_list_style_image.o -c src/parse/properties/autogenerated_list_style_image.c
COMPILE: src/parse/properties/autogenerated_list_style_position.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_list_style_position.o -c src/parse/properties/autogenerated_list_style_position.c
COMPILE: src/parse/properties/autogenerated_orphans.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_orphans.o -c src/parse/properties/autogenerated_orphans.c
COMPILE: src/parse/properties/autogenerated_outline_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_outline_color.o -c src/parse/properties/autogenerated_outline_color.c
COMPILE: src/parse/properties/autogenerated_outline_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_outline_style.o -c src/parse/properties/autogenerated_outline_style.c
COMPILE: src/parse/properties/autogenerated_outline_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_outline_width.o -c src/parse/properties/autogenerated_outline_width.c
COMPILE: src/parse/properties/autogenerated_overflow_x.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_overflow_x.o -c src/parse/properties/autogenerated_overflow_x.c
COMPILE: src/parse/properties/autogenerated_overflow_y.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_overflow_y.o -c src/parse/properties/autogenerated_overflow_y.c
COMPILE: src/parse/properties/autogenerated_page_break_after.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_page_break_after.o -c src/parse/properties/autogenerated_page_break_after.c
COMPILE: src/parse/properties/autogenerated_page_break_before.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_page_break_before.o -c src/parse/properties/autogenerated_page_break_before.c
COMPILE: src/parse/properties/autogenerated_page_break_inside.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_page_break_inside.o -c src/parse/properties/autogenerated_page_break_inside.c
COMPILE: src/parse/properties/autogenerated_pause_after.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_pause_after.o -c src/parse/properties/autogenerated_pause_after.c
COMPILE: src/parse/properties/autogenerated_pause_before.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_pause_before.o -c src/parse/properties/autogenerated_pause_before.c
COMPILE: src/parse/properties/autogenerated_pitch.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_pitch.o -c src/parse/properties/autogenerated_pitch.c
COMPILE: src/parse/properties/autogenerated_pitch_range.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_pitch_range.o -c src/parse/properties/autogenerated_pitch_range.c
COMPILE: src/parse/properties/autogenerated_position.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_position.o -c src/parse/properties/autogenerated_position.c
COMPILE: src/parse/properties/autogenerated_richness.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_richness.o -c src/parse/properties/autogenerated_richness.c
COMPILE: src/parse/properties/autogenerated_speak.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_speak.o -c src/parse/properties/autogenerated_speak.c
COMPILE: src/parse/properties/autogenerated_speak_header.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_speak_header.o -c src/parse/properties/autogenerated_speak_header.c
COMPILE: src/parse/properties/autogenerated_speak_numeral.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_speak_numeral.o -c src/parse/properties/autogenerated_speak_numeral.c
COMPILE: src/parse/properties/autogenerated_speak_punctuation.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_speak_punctuation.o -c src/parse/properties/autogenerated_speak_punctuation.c
COMPILE: src/parse/properties/autogenerated_speech_rate.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_speech_rate.o -c src/parse/properties/autogenerated_speech_rate.c
COMPILE: src/parse/properties/autogenerated_stress.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_stress.o -c src/parse/properties/autogenerated_stress.c
COMPILE: src/parse/properties/autogenerated_table_layout.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_table_layout.o -c src/parse/properties/autogenerated_table_layout.c
COMPILE: src/parse/properties/autogenerated_text_align.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_text_align.o -c src/parse/properties/autogenerated_text_align.c
COMPILE: src/parse/properties/autogenerated_text_indent.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_text_indent.o -c src/parse/properties/autogenerated_text_indent.c
COMPILE: src/parse/properties/autogenerated_text_transform.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_text_transform.o -c src/parse/properties/autogenerated_text_transform.c
COMPILE: src/parse/properties/autogenerated_unicode_bidi.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_unicode_bidi.o -c src/parse/properties/autogenerated_unicode_bidi.c
COMPILE: src/parse/properties/autogenerated_vertical_align.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_vertical_align.o -c src/parse/properties/autogenerated_vertical_align.c
COMPILE: src/parse/properties/autogenerated_visibility.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_visibility.o -c src/parse/properties/autogenerated_visibility.c
COMPILE: src/parse/properties/autogenerated_volume.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_volume.o -c src/parse/properties/autogenerated_volume.c
COMPILE: src/parse/properties/autogenerated_white_space.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_white_space.o -c src/parse/properties/autogenerated_white_space.c
COMPILE: src/parse/properties/autogenerated_widows.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_widows.o -c src/parse/properties/autogenerated_widows.c
COMPILE: src/parse/properties/autogenerated_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_width.o -c src/parse/properties/autogenerated_width.c
COMPILE: src/parse/properties/autogenerated_word_spacing.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_word_spacing.o -c src/parse/properties/autogenerated_word_spacing.c
COMPILE: src/parse/properties/autogenerated_z_index.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_z_index.o -c src/parse/properties/autogenerated_z_index.c
COMPILE: src/parse/properties/autogenerated_break_after.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_break_after.o -c src/parse/properties/autogenerated_break_after.c
COMPILE: src/parse/properties/autogenerated_break_before.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_break_before.o -c src/parse/properties/autogenerated_break_before.c
COMPILE: src/parse/properties/autogenerated_break_inside.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_break_inside.o -c src/parse/properties/autogenerated_break_inside.c
COMPILE: src/parse/properties/autogenerated_column_count.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_count.o -c src/parse/properties/autogenerated_column_count.c
COMPILE: src/parse/properties/autogenerated_column_fill.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_fill.o -c src/parse/properties/autogenerated_column_fill.c
COMPILE: src/parse/properties/autogenerated_column_gap.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_gap.o -c src/parse/properties/autogenerated_column_gap.c
COMPILE: src/parse/properties/autogenerated_column_rule_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_rule_color.o -c src/parse/properties/autogenerated_column_rule_color.c
COMPILE: src/parse/properties/autogenerated_column_rule_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_rule_style.o -c src/parse/properties/autogenerated_column_rule_style.c
COMPILE: src/parse/properties/autogenerated_column_rule_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_rule_width.o -c src/parse/properties/autogenerated_column_rule_width.c
COMPILE: src/parse/properties/autogenerated_column_span.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_span.o -c src/parse/properties/autogenerated_column_span.c
COMPILE: src/parse/properties/autogenerated_column_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_width.o -c src/parse/properties/autogenerated_column_width.c
COMPILE: src/parse/properties/autogenerated_writing_mode.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_writing_mode.o -c src/parse/properties/autogenerated_writing_mode.c
COMPILE: src/parse/properties/autogenerated_box_sizing.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_box_sizing.o -c src/parse/properties/autogenerated_box_sizing.c
COMPILE: src/select/arena.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_arena.o -c src/select/arena.c
In file included from src/select/arena.c:12:
/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src/select/arena_hash.h: In function 'css__arena_hash':
/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src/select/arena_hash.h:52:12: warning: this statement may fall through [-Wimplicit-fallthrough=]
case 3: h ^= data[2] << 16;
~~^~~~~~~~~~~~~~~~
/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src/select/arena_hash.h:53:2: note: here
case 2: h ^= data[1] << 8;
^~~~
/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src/select/arena_hash.h:53:12: warning: this statement may fall through [-Wimplicit-fallthrough=]
case 2: h ^= data[1] << 8;
~~^~~~~~~~~~~~~~~
/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src/select/arena_hash.h:54:2: note: here
case 1: h ^= data[0];
^~~~
COMPILE: src/select/computed.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_computed.o -c src/select/computed.c
COMPILE: src/select/dispatch.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_dispatch.o -c src/select/dispatch.c
COMPILE: src/select/hash.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_hash.o -c src/select/hash.c
COMPILE: src/select/select.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_select.o -c src/select/select.c
COMPILE: src/select/font_face.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_font_face.o -c src/select/font_face.c
COMPILE: src/select/properties/helpers.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_helpers.o -c src/select/properties/helpers.c
COMPILE: src/select/properties/azimuth.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_azimuth.o -c src/select/properties/azimuth.c
COMPILE: src/select/properties/background_attachment.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_background_attachment.o -c src/select/properties/background_attachment.c
COMPILE: src/select/properties/background_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_background_color.o -c src/select/properties/background_color.c
COMPILE: src/select/properties/background_image.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_background_image.o -c src/select/properties/background_image.c
COMPILE: src/select/properties/background_position.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_background_position.o -c src/select/properties/background_position.c
COMPILE: src/select/properties/background_repeat.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_background_repeat.o -c src/select/properties/background_repeat.c
COMPILE: src/select/properties/border_bottom_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_bottom_color.o -c src/select/properties/border_bottom_color.c
COMPILE: src/select/properties/border_bottom_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_bottom_style.o -c src/select/properties/border_bottom_style.c
COMPILE: src/select/properties/border_bottom_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_bottom_width.o -c src/select/properties/border_bottom_width.c
COMPILE: src/select/properties/border_collapse.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_collapse.o -c src/select/properties/border_collapse.c
COMPILE: src/select/properties/border_left_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_left_color.o -c src/select/properties/border_left_color.c
COMPILE: src/select/properties/border_left_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_left_style.o -c src/select/properties/border_left_style.c
COMPILE: src/select/properties/border_left_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_left_width.o -c src/select/properties/border_left_width.c
COMPILE: src/select/properties/border_right_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_right_color.o -c src/select/properties/border_right_color.c
COMPILE: src/select/properties/border_right_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_right_style.o -c src/select/properties/border_right_style.c
COMPILE: src/select/properties/border_right_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_right_width.o -c src/select/properties/border_right_width.c
COMPILE: src/select/properties/border_spacing.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_spacing.o -c src/select/properties/border_spacing.c
COMPILE: src/select/properties/border_top_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_top_color.o -c src/select/properties/border_top_color.c
COMPILE: src/select/properties/border_top_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_top_style.o -c src/select/properties/border_top_style.c
COMPILE: src/select/properties/border_top_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_top_width.o -c src/select/properties/border_top_width.c
COMPILE: src/select/properties/bottom.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_bottom.o -c src/select/properties/bottom.c
COMPILE: src/select/properties/box_sizing.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_box_sizing.o -c src/select/properties/box_sizing.c
COMPILE: src/select/properties/break_after.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_break_after.o -c src/select/properties/break_after.c
COMPILE: src/select/properties/break_before.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_break_before.o -c src/select/properties/break_before.c
COMPILE: src/select/properties/break_inside.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_break_inside.o -c src/select/properties/break_inside.c
COMPILE: src/select/properties/caption_side.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_caption_side.o -c src/select/properties/caption_side.c
COMPILE: src/select/properties/clear.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_clear.o -c src/select/properties/clear.c
COMPILE: src/select/properties/clip.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_clip.o -c src/select/properties/clip.c
COMPILE: src/select/properties/color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_color.o -c src/select/properties/color.c
COMPILE: src/select/properties/column_count.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_count.o -c src/select/properties/column_count.c
COMPILE: src/select/properties/column_fill.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_fill.o -c src/select/properties/column_fill.c
COMPILE: src/select/properties/column_gap.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_gap.o -c src/select/properties/column_gap.c
COMPILE: src/select/properties/column_rule_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_rule_color.o -c src/select/properties/column_rule_color.c
COMPILE: src/select/properties/column_rule_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_rule_style.o -c src/select/properties/column_rule_style.c
COMPILE: src/select/properties/column_rule_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_rule_width.o -c src/select/properties/column_rule_width.c
COMPILE: src/select/properties/column_span.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_span.o -c src/select/properties/column_span.c
COMPILE: src/select/properties/column_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_width.o -c src/select/properties/column_width.c
COMPILE: src/select/properties/content.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_content.o -c src/select/properties/content.c
COMPILE: src/select/properties/counter_increment.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_counter_increment.o -c src/select/properties/counter_increment.c
COMPILE: src/select/properties/counter_reset.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_counter_reset.o -c src/select/properties/counter_reset.c
COMPILE: src/select/properties/cue_after.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_cue_after.o -c src/select/properties/cue_after.c
COMPILE: src/select/properties/cue_before.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_cue_before.o -c src/select/properties/cue_before.c
COMPILE: src/select/properties/cursor.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_cursor.o -c src/select/properties/cursor.c
COMPILE: src/select/properties/direction.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_direction.o -c src/select/properties/direction.c
COMPILE: src/select/properties/display.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_display.o -c src/select/properties/display.c
COMPILE: src/select/properties/elevation.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_elevation.o -c src/select/properties/elevation.c
COMPILE: src/select/properties/empty_cells.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_empty_cells.o -c src/select/properties/empty_cells.c
COMPILE: src/select/properties/float.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_float.o -c src/select/properties/float.c
COMPILE: src/select/properties/font_family.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_font_family.o -c src/select/properties/font_family.c
COMPILE: src/select/properties/font_size.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_font_size.o -c src/select/properties/font_size.c
COMPILE: src/select/properties/font_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_font_style.o -c src/select/properties/font_style.c
COMPILE: src/select/properties/font_variant.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_font_variant.o -c src/select/properties/font_variant.c
COMPILE: src/select/properties/font_weight.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_font_weight.o -c src/select/properties/font_weight.c
COMPILE: src/select/properties/height.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_height.o -c src/select/properties/height.c
COMPILE: src/select/properties/left.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_left.o -c src/select/properties/left.c
COMPILE: src/select/properties/letter_spacing.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_letter_spacing.o -c src/select/properties/letter_spacing.c
COMPILE: src/select/properties/line_height.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_line_height.o -c src/select/properties/line_height.c
COMPILE: src/select/properties/list_style_image.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_list_style_image.o -c src/select/properties/list_style_image.c
COMPILE: src/select/properties/list_style_position.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_list_style_position.o -c src/select/properties/list_style_position.c
COMPILE: src/select/properties/list_style_type.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_list_style_type.o -c src/select/properties/list_style_type.c
COMPILE: src/select/properties/margin_bottom.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_margin_bottom.o -c src/select/properties/margin_bottom.c
COMPILE: src/select/properties/margin_left.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_margin_left.o -c src/select/properties/margin_left.c
COMPILE: src/select/properties/margin_right.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_margin_right.o -c src/select/properties/margin_right.c
COMPILE: src/select/properties/margin_top.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_margin_top.o -c src/select/properties/margin_top.c
COMPILE: src/select/properties/max_height.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_max_height.o -c src/select/properties/max_height.c
COMPILE: src/select/properties/max_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_max_width.o -c src/select/properties/max_width.c
COMPILE: src/select/properties/min_height.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_min_height.o -c src/select/properties/min_height.c
COMPILE: src/select/properties/min_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_min_width.o -c src/select/properties/min_width.c
COMPILE: src/select/properties/opacity.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_opacity.o -c src/select/properties/opacity.c
COMPILE: src/select/properties/orphans.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_orphans.o -c src/select/properties/orphans.c
COMPILE: src/select/properties/outline_color.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_outline_color.o -c src/select/properties/outline_color.c
COMPILE: src/select/properties/outline_style.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_outline_style.o -c src/select/properties/outline_style.c
COMPILE: src/select/properties/outline_width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_outline_width.o -c src/select/properties/outline_width.c
COMPILE: src/select/properties/overflow_x.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_overflow_x.o -c src/select/properties/overflow_x.c
COMPILE: src/select/properties/overflow_y.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_overflow_y.o -c src/select/properties/overflow_y.c
COMPILE: src/select/properties/padding_bottom.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_padding_bottom.o -c src/select/properties/padding_bottom.c
COMPILE: src/select/properties/padding_left.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_padding_left.o -c src/select/properties/padding_left.c
COMPILE: src/select/properties/padding_right.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_padding_right.o -c src/select/properties/padding_right.c
COMPILE: src/select/properties/padding_top.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_padding_top.o -c src/select/properties/padding_top.c
COMPILE: src/select/properties/page_break_after.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_page_break_after.o -c src/select/properties/page_break_after.c
COMPILE: src/select/properties/page_break_before.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_page_break_before.o -c src/select/properties/page_break_before.c
COMPILE: src/select/properties/page_break_inside.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_page_break_inside.o -c src/select/properties/page_break_inside.c
COMPILE: src/select/properties/pause_after.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_pause_after.o -c src/select/properties/pause_after.c
COMPILE: src/select/properties/pause_before.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_pause_before.o -c src/select/properties/pause_before.c
COMPILE: src/select/properties/pitch.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_pitch.o -c src/select/properties/pitch.c
COMPILE: src/select/properties/pitch_range.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_pitch_range.o -c src/select/properties/pitch_range.c
COMPILE: src/select/properties/play_during.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_play_during.o -c src/select/properties/play_during.c
COMPILE: src/select/properties/position.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_position.o -c src/select/properties/position.c
COMPILE: src/select/properties/quotes.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_quotes.o -c src/select/properties/quotes.c
COMPILE: src/select/properties/richness.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_richness.o -c src/select/properties/richness.c
COMPILE: src/select/properties/right.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_right.o -c src/select/properties/right.c
COMPILE: src/select/properties/speech_rate.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_speech_rate.o -c src/select/properties/speech_rate.c
COMPILE: src/select/properties/speak.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_speak.o -c src/select/properties/speak.c
COMPILE: src/select/properties/speak_header.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_speak_header.o -c src/select/properties/speak_header.c
COMPILE: src/select/properties/speak_numeral.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_speak_numeral.o -c src/select/properties/speak_numeral.c
COMPILE: src/select/properties/speak_punctuation.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_speak_punctuation.o -c src/select/properties/speak_punctuation.c
COMPILE: src/select/properties/stress.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_stress.o -c src/select/properties/stress.c
COMPILE: src/select/properties/table_layout.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_table_layout.o -c src/select/properties/table_layout.c
COMPILE: src/select/properties/text_align.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_text_align.o -c src/select/properties/text_align.c
COMPILE: src/select/properties/text_decoration.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_text_decoration.o -c src/select/properties/text_decoration.c
COMPILE: src/select/properties/text_indent.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_text_indent.o -c src/select/properties/text_indent.c
COMPILE: src/select/properties/text_transform.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_text_transform.o -c src/select/properties/text_transform.c
COMPILE: src/select/properties/top.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_top.o -c src/select/properties/top.c
COMPILE: src/select/properties/unicode_bidi.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_unicode_bidi.o -c src/select/properties/unicode_bidi.c
COMPILE: src/select/properties/vertical_align.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_vertical_align.o -c src/select/properties/vertical_align.c
COMPILE: src/select/properties/visibility.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_visibility.o -c src/select/properties/visibility.c
COMPILE: src/select/properties/voice_family.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_voice_family.o -c src/select/properties/voice_family.c
COMPILE: src/select/properties/volume.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_volume.o -c src/select/properties/volume.c
COMPILE: src/select/properties/white_space.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_white_space.o -c src/select/properties/white_space.c
COMPILE: src/select/properties/widows.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_widows.o -c src/select/properties/widows.c
COMPILE: src/select/properties/width.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_width.o -c src/select/properties/width.c
COMPILE: src/select/properties/word_spacing.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_word_spacing.o -c src/select/properties/word_spacing.c
COMPILE: src/select/properties/writing_mode.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_writing_mode.o -c src/select/properties/writing_mode.c
COMPILE: src/select/properties/z_index.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_z_index.o -c src/select/properties/z_index.c
COMPILE: src/utils/utils.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_utils_utils.o -c src/utils/utils.c
AR: build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libcss.a
rm -f build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libcss.a
x86_64-unknown-redox-gcc-ar cru build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libcss.a build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_stylesheet.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_charset_detect.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_lex_lex.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_parse.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_language.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_important.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_propstrings.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_font_face.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_azimuth.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_background.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_background_position.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_border.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_border_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_border_spacing.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_border_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_border_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_clip.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_columns.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_column_rule.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_content.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_cue.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_cursor.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_elevation.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_font.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_font_family.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_font_weight.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_list_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_list_style_type.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_margin.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_opacity.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_outline.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_overflow.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_padding.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_pause.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_play_during.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_properties.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_quotes.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_text_decoration.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_utils.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_voice_family.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_background_repeat.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_collapse.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_cue_after.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_cue_before.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_direction.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_display.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_empty_cells.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_float.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_font_size.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_font_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_font_variant.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_height.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_letter_spacing.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_line_height.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_top.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_bottom.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_left.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_right.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_max_height.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_max_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_min_height.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_min_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_padding_side.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_padding_bottom.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_padding_left.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_padding_top.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_padding_right.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_margin_side.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_margin_top.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_margin_bottom.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_margin_left.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_margin_right.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_side.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_top.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_bottom.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_left.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_right.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_side_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_top_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_bottom_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_left_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_right_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_side_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_top_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_bottom_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_left_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_right_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_side_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_top_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_bottom_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_left_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_border_right_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_counter_increment.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_counter_reset.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_background_attachment.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_background_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_caption_side.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_clear.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_background_image.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_list_style_image.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_list_style_position.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_orphans.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_outline_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_outline_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_outline_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_overflow_x.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_overflow_y.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_page_break_after.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_page_break_before.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_page_break_inside.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_pause_after.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_pause_before.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_pitch.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_pitch_range.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_position.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_richness.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_speak.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_speak_header.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_speak_numeral.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_speak_punctuation.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_speech_rate.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_stress.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_table_layout.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_text_align.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_text_indent.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_text_transform.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_unicode_bidi.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_vertical_align.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_visibility.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_volume.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_white_space.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_widows.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_word_spacing.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_z_index.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_break_after.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_break_before.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_break_inside.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_count.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_fill.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_gap.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_rule_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_rule_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_rule_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_span.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_column_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_writing_mode.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parse_properties_autogenerated_box_sizing.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_arena.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_computed.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_dispatch.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_hash.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_select.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_font_face.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_helpers.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_azimuth.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_background_attachment.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_background_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_background_image.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_background_position.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_background_repeat.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_bottom_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_bottom_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_bottom_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_collapse.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_left_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_left_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_left_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_right_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_right_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_right_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_spacing.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_top_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_top_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_border_top_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_bottom.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_box_sizing.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_break_after.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_break_before.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_break_inside.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_caption_side.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_clear.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_clip.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_count.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_fill.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_gap.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_rule_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_rule_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_rule_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_span.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_column_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_content.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_counter_increment.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_counter_reset.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_cue_after.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_cue_before.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_cursor.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_direction.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_display.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_elevation.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_empty_cells.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_float.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_font_family.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_font_size.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_font_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_font_variant.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_font_weight.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_height.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_left.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_letter_spacing.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_line_height.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_list_style_image.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_list_style_position.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_list_style_type.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_margin_bottom.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_margin_left.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_margin_right.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_margin_top.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_max_height.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_max_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_min_height.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_min_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_opacity.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_orphans.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_outline_color.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_outline_style.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_outline_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_overflow_x.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_overflow_y.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_padding_bottom.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_padding_left.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_padding_right.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_padding_top.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_page_break_after.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_page_break_before.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_page_break_inside.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_pause_after.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_pause_before.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_pitch.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_pitch_range.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_play_during.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_position.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_quotes.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_richness.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_right.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_speech_rate.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_speak.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_speak_header.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_speak_numeral.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_speak_punctuation.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_stress.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_table_layout.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_text_align.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_text_decoration.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_text_indent.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_text_transform.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_top.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_unicode_bidi.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_vertical_align.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_visibility.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_voice_family.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_volume.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_white_space.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_widows.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_width.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_word_spacing.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_writing_mode.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_select_properties_z_index.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_utils_errors.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_utils_utils.o
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
install -m 644 include/libcss/computed.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
install -m 644 include/libcss/errors.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
install -m 644 include/libcss/font_face.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
install -m 644 include/libcss/fpmath.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
install -m 644 include/libcss/functypes.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
install -m 644 include/libcss/hint.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
install -m 644 include/libcss/libcss.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
install -m 644 include/libcss/properties.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
install -m 644 include/libcss/select.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
install -m 644 include/libcss/stylesheet.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
install -m 644 include/libcss/types.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libcss
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libcss.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libcss.pc"
sed -e... libcss.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libcss.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#7#' -e 's#PATCH#0#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.7.0#' -e 's#REQUIRED##' -e 's#LIBRARIES##' libcss.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libcss.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libcss.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libcss.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libcss.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libcss'
make install --directory=libhubbub HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
COMPILE: src/parser.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parser.o -c src/parser.c
COMPILE: src/charset/detect.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_charset_detect.o -c src/charset/detect.c
COMPILE: src/tokeniser/tokeniser.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_tokeniser_tokeniser.o -c src/tokeniser/tokeniser.c
COMPILE: src/treebuilder/treebuilder.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_treebuilder.o -c src/treebuilder/treebuilder.c
COMPILE: src/treebuilder/initial.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_initial.o -c src/treebuilder/initial.c
COMPILE: src/treebuilder/before_html.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_before_html.o -c src/treebuilder/before_html.c
COMPILE: src/treebuilder/before_head.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_before_head.o -c src/treebuilder/before_head.c
COMPILE: src/treebuilder/in_head.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_head.o -c src/treebuilder/in_head.c
COMPILE: src/treebuilder/in_head_noscript.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_head_noscript.o -c src/treebuilder/in_head_noscript.c
COMPILE: src/treebuilder/after_head.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_after_head.o -c src/treebuilder/after_head.c
COMPILE: src/treebuilder/in_body.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_body.o -c src/treebuilder/in_body.c
COMPILE: src/treebuilder/in_table.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_table.o -c src/treebuilder/in_table.c
COMPILE: src/treebuilder/in_caption.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_caption.o -c src/treebuilder/in_caption.c
COMPILE: src/treebuilder/in_column_group.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_column_group.o -c src/treebuilder/in_column_group.c
COMPILE: src/treebuilder/in_table_body.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_table_body.o -c src/treebuilder/in_table_body.c
COMPILE: src/treebuilder/in_row.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_row.o -c src/treebuilder/in_row.c
COMPILE: src/treebuilder/in_cell.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_cell.o -c src/treebuilder/in_cell.c
COMPILE: src/treebuilder/in_select.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_select.o -c src/treebuilder/in_select.c
COMPILE: src/treebuilder/in_select_in_table.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_select_in_table.o -c src/treebuilder/in_select_in_table.c
COMPILE: src/treebuilder/in_foreign_content.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_foreign_content.o -c src/treebuilder/in_foreign_content.c
COMPILE: src/treebuilder/after_body.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_after_body.o -c src/treebuilder/after_body.c
COMPILE: src/treebuilder/in_frameset.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_frameset.o -c src/treebuilder/in_frameset.c
COMPILE: src/treebuilder/after_frameset.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_after_frameset.o -c src/treebuilder/after_frameset.c
COMPILE: src/treebuilder/after_after_body.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_after_after_body.o -c src/treebuilder/after_after_body.c
COMPILE: src/treebuilder/after_after_frameset.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_after_after_frameset.o -c src/treebuilder/after_after_frameset.c
COMPILE: src/treebuilder/generic_rcdata.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_generic_rcdata.o -c src/treebuilder/generic_rcdata.c
AR: build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libhubbub.a
rm -f build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libhubbub.a
x86_64-unknown-redox-gcc-ar cru build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libhubbub.a build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_parser.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_charset_detect.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_tokeniser_entities.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_tokeniser_tokeniser.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_treebuilder.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_initial.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_before_html.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_before_head.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_head.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_head_noscript.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_after_head.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_body.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_table.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_caption.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_column_group.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_table_body.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_row.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_cell.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_select.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_select_in_table.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_foreign_content.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_after_body.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_in_frameset.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_after_frameset.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_after_after_body.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_after_after_frameset.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_treebuilder_generic_rcdata.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_utils_errors.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_utils_string.o
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/hubbub
install -m 644 include/hubbub/errors.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/hubbub
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/hubbub
install -m 644 include/hubbub/functypes.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/hubbub
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/hubbub
install -m 644 include/hubbub/hubbub.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/hubbub
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/hubbub
install -m 644 include/hubbub/parser.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/hubbub
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/hubbub
install -m 644 include/hubbub/tree.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/hubbub
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/hubbub
install -m 644 include/hubbub/types.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/hubbub
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libhubbub.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libhubbub.pc"
sed -e... libhubbub.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libhubbub.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#3#' -e 's#PATCH#4#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.3.4#' -e 's#REQUIRED##' -e 's#LIBRARIES##' libhubbub.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libhubbub.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libhubbub.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libhubbub.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libhubbub.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libhubbub'
make install --directory=libdom HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
COMPILE: bindings/hubbub/parser.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/bindings_hubbub_parser.o -c bindings/hubbub/parser.c
COMPILE: bindings/xml/expat_xmlparser.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/bindings_xml_expat_xmlparser.o -c bindings/xml/expat_xmlparser.c
COMPILE: src/core/string.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_string.o -c src/core/string.c
COMPILE: src/core/node.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_node.o -c src/core/node.c
COMPILE: src/core/attr.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_attr.o -c src/core/attr.c
COMPILE: src/core/characterdata.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_characterdata.o -c src/core/characterdata.c
COMPILE: src/core/element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_element.o -c src/core/element.c
COMPILE: src/core/implementation.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_implementation.o -c src/core/implementation.c
COMPILE: src/core/text.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_text.o -c src/core/text.c
COMPILE: src/core/typeinfo.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_typeinfo.o -c src/core/typeinfo.c
COMPILE: src/core/comment.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_comment.o -c src/core/comment.c
COMPILE: src/core/namednodemap.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_namednodemap.o -c src/core/namednodemap.c
COMPILE: src/core/nodelist.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_nodelist.o -c src/core/nodelist.c
COMPILE: src/core/cdatasection.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_cdatasection.o -c src/core/cdatasection.c
COMPILE: src/core/document_type.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_document_type.o -c src/core/document_type.c
COMPILE: src/core/entity_ref.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_entity_ref.o -c src/core/entity_ref.c
COMPILE: src/core/pi.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_pi.o -c src/core/pi.c
COMPILE: src/core/doc_fragment.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_doc_fragment.o -c src/core/doc_fragment.c
COMPILE: src/core/document.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_document.o -c src/core/document.c
COMPILE: src/events/event.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_event.o -c src/events/event.c
COMPILE: src/events/dispatch.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_dispatch.o -c src/events/dispatch.c
COMPILE: src/events/event_target.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_event_target.o -c src/events/event_target.c
COMPILE: src/events/document_event.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_document_event.o -c src/events/document_event.c
COMPILE: src/events/custom_event.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_custom_event.o -c src/events/custom_event.c
COMPILE: src/events/keyboard_event.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_keyboard_event.o -c src/events/keyboard_event.c
COMPILE: src/events/mouse_wheel_event.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_mouse_wheel_event.o -c src/events/mouse_wheel_event.c
COMPILE: src/events/text_event.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_text_event.o -c src/events/text_event.c
COMPILE: src/events/event_listener.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_event_listener.o -c src/events/event_listener.c
COMPILE: src/events/mouse_event.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_mouse_event.o -c src/events/mouse_event.c
COMPILE: src/events/mutation_event.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_mutation_event.o -c src/events/mutation_event.c
COMPILE: src/events/ui_event.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_ui_event.o -c src/events/ui_event.c
COMPILE: src/events/mouse_multi_wheel_event.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_mouse_multi_wheel_event.o -c src/events/mouse_multi_wheel_event.c
COMPILE: src/events/mutation_name_event.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_mutation_name_event.o -c src/events/mutation_name_event.c
COMPILE: src/html/html_document.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_document.o -c src/html/html_document.c
COMPILE: src/html/html_collection.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_collection.o -c src/html/html_collection.c
COMPILE: src/html/html_options_collection.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_options_collection.o -c src/html/html_options_collection.c
COMPILE: src/html/html_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_element.o -c src/html/html_element.c
COMPILE: src/html/html_html_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_html_element.o -c src/html/html_html_element.c
COMPILE: src/html/html_head_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_head_element.o -c src/html/html_head_element.c
COMPILE: src/html/html_link_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_link_element.o -c src/html/html_link_element.c
COMPILE: src/html/html_title_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_title_element.o -c src/html/html_title_element.c
COMPILE: src/html/html_meta_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_meta_element.o -c src/html/html_meta_element.c
COMPILE: src/html/html_base_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_base_element.o -c src/html/html_base_element.c
COMPILE: src/html/html_style_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_style_element.o -c src/html/html_style_element.c
COMPILE: src/html/html_body_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_body_element.o -c src/html/html_body_element.c
COMPILE: src/html/html_form_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_form_element.o -c src/html/html_form_element.c
COMPILE: src/html/html_select_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_select_element.o -c src/html/html_select_element.c
COMPILE: src/html/html_button_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_button_element.o -c src/html/html_button_element.c
COMPILE: src/html/html_input_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_input_element.o -c src/html/html_input_element.c
COMPILE: src/html/html_text_area_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_text_area_element.o -c src/html/html_text_area_element.c
COMPILE: src/html/html_opt_group_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_opt_group_element.o -c src/html/html_opt_group_element.c
COMPILE: src/html/html_option_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_option_element.o -c src/html/html_option_element.c
COMPILE: src/html/html_hr_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_hr_element.o -c src/html/html_hr_element.c
COMPILE: src/html/html_dlist_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_dlist_element.o -c src/html/html_dlist_element.c
COMPILE: src/html/html_directory_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_directory_element.o -c src/html/html_directory_element.c
COMPILE: src/html/html_menu_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_menu_element.o -c src/html/html_menu_element.c
COMPILE: src/html/html_fieldset_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_fieldset_element.o -c src/html/html_fieldset_element.c
COMPILE: src/html/html_legend_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_legend_element.o -c src/html/html_legend_element.c
COMPILE: src/html/html_div_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_div_element.o -c src/html/html_div_element.c
COMPILE: src/html/html_paragraph_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_paragraph_element.o -c src/html/html_paragraph_element.c
COMPILE: src/html/html_heading_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_heading_element.o -c src/html/html_heading_element.c
COMPILE: src/html/html_quote_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_quote_element.o -c src/html/html_quote_element.c
COMPILE: src/html/html_pre_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_pre_element.o -c src/html/html_pre_element.c
COMPILE: src/html/html_br_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_br_element.o -c src/html/html_br_element.c
COMPILE: src/html/html_label_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_label_element.o -c src/html/html_label_element.c
COMPILE: src/html/html_ulist_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_ulist_element.o -c src/html/html_ulist_element.c
COMPILE: src/html/html_olist_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_olist_element.o -c src/html/html_olist_element.c
COMPILE: src/html/html_li_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_li_element.o -c src/html/html_li_element.c
COMPILE: src/html/html_font_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_font_element.o -c src/html/html_font_element.c
COMPILE: src/html/html_mod_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_mod_element.o -c src/html/html_mod_element.c
COMPILE: src/html/html_anchor_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_anchor_element.o -c src/html/html_anchor_element.c
COMPILE: src/html/html_basefont_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_basefont_element.o -c src/html/html_basefont_element.c
COMPILE: src/html/html_image_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_image_element.o -c src/html/html_image_element.c
COMPILE: src/html/html_object_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_object_element.o -c src/html/html_object_element.c
COMPILE: src/html/html_param_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_param_element.o -c src/html/html_param_element.c
COMPILE: src/html/html_applet_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_applet_element.o -c src/html/html_applet_element.c
COMPILE: src/html/html_area_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_area_element.o -c src/html/html_area_element.c
COMPILE: src/html/html_map_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_map_element.o -c src/html/html_map_element.c
COMPILE: src/html/html_script_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_script_element.o -c src/html/html_script_element.c
COMPILE: src/html/html_tablecaption_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_tablecaption_element.o -c src/html/html_tablecaption_element.c
COMPILE: src/html/html_tablecell_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_tablecell_element.o -c src/html/html_tablecell_element.c
COMPILE: src/html/html_tablecol_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_tablecol_element.o -c src/html/html_tablecol_element.c
COMPILE: src/html/html_tablesection_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_tablesection_element.o -c src/html/html_tablesection_element.c
COMPILE: src/html/html_table_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_table_element.o -c src/html/html_table_element.c
COMPILE: src/html/html_tablerow_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_tablerow_element.o -c src/html/html_tablerow_element.c
COMPILE: src/html/html_frameset_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_frameset_element.o -c src/html/html_frameset_element.c
COMPILE: src/html/html_frame_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_frame_element.o -c src/html/html_frame_element.c
COMPILE: src/html/html_iframe_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_iframe_element.o -c src/html/html_iframe_element.c
COMPILE: src/html/html_isindex_element.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_isindex_element.o -c src/html/html_isindex_element.c
COMPILE: src/utils/namespace.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_utils_namespace.o -c src/utils/namespace.c
COMPILE: src/utils/hashtable.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_utils_hashtable.o -c src/utils/hashtable.c
COMPILE: src/utils/validate.c
x86_64-unknown-redox-gcc -MMD -MP -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/src -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom/binding -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_utils_validate.o -c src/utils/validate.c
AR: build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libdom.a
rm -f build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libdom.a
x86_64-unknown-redox-gcc-ar cru build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libdom.a build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/bindings_hubbub_parser.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/bindings_xml_expat_xmlparser.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_string.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_node.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_attr.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_characterdata.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_implementation.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_text.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_typeinfo.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_comment.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_namednodemap.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_nodelist.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_cdatasection.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_document_type.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_entity_ref.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_pi.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_doc_fragment.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_core_document.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_event.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_dispatch.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_event_target.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_document_event.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_custom_event.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_keyboard_event.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_mouse_wheel_event.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_text_event.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_event_listener.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_mouse_event.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_mutation_event.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_ui_event.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_mouse_multi_wheel_event.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_events_mutation_name_event.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_document.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_collection.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_options_collection.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_html_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_head_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_link_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_title_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_meta_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_base_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_style_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_body_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_form_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_select_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_button_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_input_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_text_area_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_opt_group_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_option_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_hr_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_dlist_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_directory_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_menu_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_fieldset_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_legend_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_div_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_paragraph_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_heading_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_quote_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_pre_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_br_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_label_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_ulist_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_olist_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_li_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_font_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_mod_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_anchor_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_basefont_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_image_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_object_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_param_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_applet_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_area_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_map_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_script_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_tablecaption_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_tablecell_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_tablecol_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_tablesection_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_table_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_tablerow_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_frameset_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_frame_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_iframe_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_html_html_isindex_element.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_utils_namespace.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_utils_hashtable.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_utils_character_valid.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_utils_validate.o
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/bindings/hubbub
install -m 644 bindings/hubbub/errors.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/bindings/hubbub
install -m 644 bindings/hubbub/parser.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/bindings/hubbub
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/bindings/xml
install -m 644 bindings/xml/xmlerror.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/bindings/xml
install -m 644 bindings/xml/xmlparser.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/bindings/xml
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom
install -m 644 include/dom/dom.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom
install -m 644 include/dom/functypes.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom
install -m 644 include/dom/inttypes.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/attr.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/characterdata.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/cdatasection.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/comment.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/doc_fragment.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/document.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/document_type.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/entity_ref.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/exceptions.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/implementation.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/namednodemap.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/node.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/nodelist.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/string.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/pi.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/text.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
install -m 644 include/dom/core/typeinfo.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/core
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/event.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/ui_event.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/custom_event.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/mouse_event.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/keyboard_event.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/text_event.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/mouse_wheel_event.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/mouse_multi_wheel_event.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/mutation_event.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/event_target.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/mutation_name_event.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/events.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/event_listener.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
install -m 644 include/dom/events/document_event.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/events
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_document.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_collection.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_elements.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_html_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_head_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_link_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_title_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_body_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_meta_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_form_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_button_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_input_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_select_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_text_area_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_option_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_opt_group_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_options_collection.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_hr_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_dlist_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_directory_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_menu_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_fieldset_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_legend_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_div_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_paragraph_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_heading_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_quote_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_pre_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_br_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_label_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_ulist_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_olist_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_li_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_font_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_mod_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_anchor_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_basefont_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_image_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_object_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_param_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_applet_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_area_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_map_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_script_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_tablecaption_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_tablecell_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_tablecol_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_tablesection_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_table_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_tablerow_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_base_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_style_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_frameset_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_frame_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_iframe_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
install -m 644 include/dom/html/html_isindex_element.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/dom/html
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libdom.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libdom.pc"
sed -e... libdom.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libdom.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#3#' -e 's#PATCH#2#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.3.2#' -e 's#REQUIRED#Requires: libhubbub#' -e 's#LIBRARIES##' libdom.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libdom.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libdom.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libdom.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libdom.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libdom'
make install --directory=libnsbmp HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/
install -m 644 include/libnsbmp.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libnsbmp.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsbmp.pc"
sed -e... libnsbmp.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsbmp.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#1#' -e 's#PATCH#4#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.1.4#' -e 's#REQUIRED##' -e 's#LIBRARIES##' libnsbmp.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsbmp.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsbmp.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libnsbmp.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsbmp.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libnsbmp'
make install --directory=libnsgif HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
install -m 644 include/libnsgif.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libnsgif.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsgif.pc"
sed -e... libnsgif.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsgif.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#2#' -e 's#PATCH#0#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.2.0#' -e 's#REQUIRED##' -e 's#LIBRARIES##' libnsgif.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsgif.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsgif.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libnsgif.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsgif.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libnsgif'
make install --directory=librosprite HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
install -m 644 include/librosprite.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... librosprite.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/librosprite.pc"
sed -e... librosprite.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/librosprite.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#1#' -e 's#PATCH#2#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.1.2#' -e 's#REQUIRED##' -e 's#LIBRARIES##' librosprite.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/librosprite.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/librosprite.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/librosprite.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/librosprite.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/librosprite'
make install --directory=libnsutils HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/nsutils
install -m 644 include/nsutils/errors.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/nsutils
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/nsutils
install -m 644 include/nsutils/base64.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/nsutils
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/nsutils
install -m 644 include/nsutils/time.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/nsutils
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/nsutils
install -m 644 include/nsutils/unistd.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/nsutils
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libnsutils.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsutils.pc"
sed -e... libnsutils.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsutils.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#0#' -e 's#PATCH#3#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.0.3#' -e 's#REQUIRED##' -e 's#LIBRARIES#-lnsutils#' libnsutils.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsutils.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsutils.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libnsutils.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsutils.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libnsutils'
make install --directory=libutf8proc HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libutf8proc
install -m 644 include/libutf8proc/utf8proc.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/libutf8proc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libutf8proc.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libutf8proc.pc"
sed -e... libutf8proc.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libutf8proc.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#1#' -e 's#MINOR#3#' -e 's#PATCH#1-3#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#1.3.1-3#' -e 's#REQUIRED##' -e 's#LIBRARIES##' libutf8proc.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libutf8proc.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libutf8proc.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libutf8proc.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libutf8proc.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libutf8proc'
make install --directory=libnspsl HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
install -m 644 include/nspsl.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libnspsl.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnspsl.pc"
sed -e... libnspsl.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnspsl.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#1#' -e 's#PATCH#2#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.1.2#' -e 's#REQUIRED##' -e 's#LIBRARIES#-lnspsl#' libnspsl.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnspsl.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnspsl.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libnspsl.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnspsl.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libnspsl'
make install --directory=libsvgtiny HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
COMPILE: src/svgtiny.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libsvgtiny/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libsvgtiny/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_svgtiny.o -c src/svgtiny.c
COMPILE: src/svgtiny_gradient.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libsvgtiny/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libsvgtiny/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_svgtiny_gradient.o -c src/svgtiny_gradient.c
COMPILE: src/svgtiny_list.c
x86_64-unknown-redox-gcc -MMD -MP -D_BSD_SOURCE -D_DEFAULT_SOURCE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libsvgtiny/include/ -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libsvgtiny/src -Wall -W -Wno-error -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -D_ALIGNED="__attribute__((aligned))" -DNDEBUG -O2 -std=c99 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_svgtiny_list.o -c src/svgtiny_list.c
AR: build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libsvgtiny.a
rm -f build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libsvgtiny.a
x86_64-unknown-redox-gcc-ar cru build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libsvgtiny.a build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_svgtiny.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_svgtiny_gradient.o build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/src_svgtiny_list.o
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
install -m 644 include/svgtiny.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libsvgtiny.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libsvgtiny.pc"
sed -e... libsvgtiny.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libsvgtiny.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#1#' -e 's#PATCH#6#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.1.6#' -e 's#REQUIRED##' -e 's#LIBRARIES##' libsvgtiny.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libsvgtiny.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libsvgtiny.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libsvgtiny.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libsvgtiny.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libsvgtiny'
make install --directory=libnsfb HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
install -m 644 include/libnsfb.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
install -m 644 include/libnsfb_plot.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
install -m 644 include/libnsfb_plot_util.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
install -m 644 include/libnsfb_event.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
install -m 644 include/libnsfb_cursor.h /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig
echo "sed -e... libnsfb.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsfb.pc"
sed -e... libnsfb.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsfb.pc
sed -e 's#PREFIX#/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer#' -e 's#LIBDIR#lib#' -e 's#MAJOR#0#' -e 's#MINOR#1#' -e 's#PATCH#6#' -e 's#INCLUDEDIR#include#' -e 's#VERSION#0.1.6#' -e 's#REQUIRED#Requires: sdl#' -e 's#LIBRARIES##' libnsfb.pc.in >build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsfb.pc
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsfb.pc /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib/pkgconfig/libnsfb.pc
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
install -m 644 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-lib-static/libnsfb.a /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/libnsfb'
make install --directory=nsgenbind HOST=x86_64-unknown-redox PREFIX=/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer Q= DESTDIR=
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build'
make[2]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
mkdir -p /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/bin
install -m 755 build-x86_64-pc-linux-gnu-x86_64-unknown-redox-release-binary/nsgenbind /home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/bin
make[2]: Leaving directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/nsgenbind'
make --directory=netsurf PREFIX= TARGET=framebuffer
make[2]: Entering directory '/home/tyhdefu/redox/cookbook/recipes/netsurf/build/netsurf'
M.CONFIG: JPEG (libjpeg) enabled (NETSURF_USE_JPEG := YES)
M.CONFIG: PDF export (haru) disabled (NETSURF_USE_HARU_PDF := NO)
M.CONFIG: glibc internal iconv disabled (NETSURF_USE_LIBICONV_PLUG := NO)
M.CONFIG: Javascript (Duktape) disabled (NETSURF_USE_DUKTAPE := NO)
PKG.CNFG: CSS (libcss) enabled
PKG.CNFG: DOM (libdom) enabled
PKG.CNFG: nsutils (libnsutils) enabled
PKG.CNFG: utf8proc (libutf8proc) enabled
M.CONFIG: Curl (libcurl) enabled (NETSURF_USE_CURL := YES)
M.CONFIG: OpenSSL (openssl) enabled (NETSURF_USE_OPENSSL := YES)
M.CONFIG: PNG (libpng) enabled (NETSURF_USE_PNG := YES)
M.CONFIG: BMP (libnsbmp) enabled (NETSURF_USE_BMP := YES)
M.CONFIG: GIF (libnsgif) enabled (NETSURF_USE_GIF := YES)
M.CONFIG: SVG (libsvgtiny) disabled (NETSURF_USE_NSSVG := NO)
M.CONFIG: Sprite (librosprite) auto-enabled (NETSURF_USE_ROSPRITE := AUTO)
M.CONFIG: PSL (libnspsl) auto-enabled (NETSURF_USE_NSPSL := AUTO)
M.CONFIG: LOG (libnslog) auto-enabled (NETSURF_USE_NSLOG := AUTO)
PKG.CNFG: libnsfb (libnsfb) enabled
PKG.CNFG: Check (check) disabled
COMPILE: utils/utf8.c
rm -f build/Linux-framebuffer/deps/utils_utf8.d
rm -f build/Linux-framebuffer/utils_utf8.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_utf8.d build/Linux-framebuffer/utils_utf8.o' -MF build/Linux-framebuffer/deps/utils_utf8.d -o build/Linux-framebuffer/utils_utf8.o -c utils/utf8.c
COMPILE: utils/useragent.c
rm -f build/Linux-framebuffer/deps/utils_useragent.d
rm -f build/Linux-framebuffer/utils_useragent.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_useragent.d build/Linux-framebuffer/utils_useragent.o' -MF build/Linux-framebuffer/deps/utils_useragent.d -o build/Linux-framebuffer/utils_useragent.o -c utils/useragent.c
COMPILE: utils/url.c
rm -f build/Linux-framebuffer/deps/utils_url.d
rm -f build/Linux-framebuffer/utils_url.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_url.d build/Linux-framebuffer/utils_url.o' -MF build/Linux-framebuffer/deps/utils_url.d -o build/Linux-framebuffer/utils_url.o -c utils/url.c
COMPILE: utils/nsurl/parse.c
rm -f build/Linux-framebuffer/deps/utils_nsurl_parse.d
rm -f build/Linux-framebuffer/utils_nsurl_parse.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_nsurl_parse.d build/Linux-framebuffer/utils_nsurl_parse.o' -MF build/Linux-framebuffer/deps/utils_nsurl_parse.d -o build/Linux-framebuffer/utils_nsurl_parse.o -c utils/nsurl/parse.c
COMPILE: utils/nsurl/nsurl.c
rm -f build/Linux-framebuffer/deps/utils_nsurl_nsurl.d
rm -f build/Linux-framebuffer/utils_nsurl_nsurl.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_nsurl_nsurl.d build/Linux-framebuffer/utils_nsurl_nsurl.o' -MF build/Linux-framebuffer/deps/utils_nsurl_nsurl.d -o build/Linux-framebuffer/utils_nsurl_nsurl.o -c utils/nsurl/nsurl.c
COMPILE: utils/nsoption.c
rm -f build/Linux-framebuffer/deps/utils_nsoption.d
rm -f build/Linux-framebuffer/utils_nsoption.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_nsoption.d build/Linux-framebuffer/utils_nsoption.o' -MF build/Linux-framebuffer/deps/utils_nsoption.d -o build/Linux-framebuffer/utils_nsoption.o -c utils/nsoption.c
COMPILE: utils/messages.c
rm -f build/Linux-framebuffer/deps/utils_messages.d
rm -f build/Linux-framebuffer/utils_messages.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_messages.d build/Linux-framebuffer/utils_messages.o' -MF build/Linux-framebuffer/deps/utils_messages.d -o build/Linux-framebuffer/utils_messages.o -c utils/messages.c
COMPILE: utils/log.c
rm -f build/Linux-framebuffer/deps/utils_log.d
rm -f build/Linux-framebuffer/utils_log.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_log.d build/Linux-framebuffer/utils_log.o' -MF build/Linux-framebuffer/deps/utils_log.d -o build/Linux-framebuffer/utils_log.o -c utils/log.c
COMPILE: utils/libdom.c
rm -f build/Linux-framebuffer/deps/utils_libdom.d
rm -f build/Linux-framebuffer/utils_libdom.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_libdom.d build/Linux-framebuffer/utils_libdom.o' -MF build/Linux-framebuffer/deps/utils_libdom.d -o build/Linux-framebuffer/utils_libdom.o -c utils/libdom.c
COMPILE: utils/idna.c
rm -f build/Linux-framebuffer/deps/utils_idna.d
rm -f build/Linux-framebuffer/utils_idna.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_idna.d build/Linux-framebuffer/utils_idna.o' -MF build/Linux-framebuffer/deps/utils_idna.d -o build/Linux-framebuffer/utils_idna.o -c utils/idna.c
COMPILE: utils/http/www-authenticate.c
rm -f build/Linux-framebuffer/deps/utils_http_www-authenticate.d
rm -f build/Linux-framebuffer/utils_http_www-authenticate.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_http_www-authenticate.d build/Linux-framebuffer/utils_http_www-authenticate.o' -MF build/Linux-framebuffer/deps/utils_http_www-authenticate.d -o build/Linux-framebuffer/utils_http_www-authenticate.o -c utils/http/www-authenticate.c
COMPILE: utils/http/primitives.c
rm -f build/Linux-framebuffer/deps/utils_http_primitives.d
rm -f build/Linux-framebuffer/utils_http_primitives.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_http_primitives.d build/Linux-framebuffer/utils_http_primitives.o' -MF build/Linux-framebuffer/deps/utils_http_primitives.d -o build/Linux-framebuffer/utils_http_primitives.o -c utils/http/primitives.c
COMPILE: utils/http/parameter.c
rm -f build/Linux-framebuffer/deps/utils_http_parameter.d
rm -f build/Linux-framebuffer/utils_http_parameter.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_http_parameter.d build/Linux-framebuffer/utils_http_parameter.o' -MF build/Linux-framebuffer/deps/utils_http_parameter.d -o build/Linux-framebuffer/utils_http_parameter.o -c utils/http/parameter.c
COMPILE: utils/http/generics.c
rm -f build/Linux-framebuffer/deps/utils_http_generics.d
rm -f build/Linux-framebuffer/utils_http_generics.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_http_generics.d build/Linux-framebuffer/utils_http_generics.o' -MF build/Linux-framebuffer/deps/utils_http_generics.d -o build/Linux-framebuffer/utils_http_generics.o -c utils/http/generics.c
COMPILE: utils/http/content-type.c
rm -f build/Linux-framebuffer/deps/utils_http_content-type.d
rm -f build/Linux-framebuffer/utils_http_content-type.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_http_content-type.d build/Linux-framebuffer/utils_http_content-type.o' -MF build/Linux-framebuffer/deps/utils_http_content-type.d -o build/Linux-framebuffer/utils_http_content-type.o -c utils/http/content-type.c
COMPILE: utils/http/content-disposition.c
rm -f build/Linux-framebuffer/deps/utils_http_content-disposition.d
rm -f build/Linux-framebuffer/utils_http_content-disposition.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_http_content-disposition.d build/Linux-framebuffer/utils_http_content-disposition.o' -MF build/Linux-framebuffer/deps/utils_http_content-disposition.d -o build/Linux-framebuffer/utils_http_content-disposition.o -c utils/http/content-disposition.c
COMPILE: utils/http/challenge.c
rm -f build/Linux-framebuffer/deps/utils_http_challenge.d
rm -f build/Linux-framebuffer/utils_http_challenge.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_http_challenge.d build/Linux-framebuffer/utils_http_challenge.o' -MF build/Linux-framebuffer/deps/utils_http_challenge.d -o build/Linux-framebuffer/utils_http_challenge.o -c utils/http/challenge.c
COMPILE: utils/hashtable.c
rm -f build/Linux-framebuffer/deps/utils_hashtable.d
rm -f build/Linux-framebuffer/utils_hashtable.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_hashtable.d build/Linux-framebuffer/utils_hashtable.o' -MF build/Linux-framebuffer/deps/utils_hashtable.d -o build/Linux-framebuffer/utils_hashtable.o -c utils/hashtable.c
COMPILE: utils/filename.c
rm -f build/Linux-framebuffer/deps/utils_filename.d
rm -f build/Linux-framebuffer/utils_filename.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_filename.d build/Linux-framebuffer/utils_filename.o' -MF build/Linux-framebuffer/deps/utils_filename.d -o build/Linux-framebuffer/utils_filename.o -c utils/filename.c
COMPILE: utils/file.c
rm -f build/Linux-framebuffer/deps/utils_file.d
rm -f build/Linux-framebuffer/utils_file.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_file.d build/Linux-framebuffer/utils_file.o' -MF build/Linux-framebuffer/deps/utils_file.d -o build/Linux-framebuffer/utils_file.o -c utils/file.c
COMPILE: utils/corestrings.c
rm -f build/Linux-framebuffer/deps/utils_corestrings.d
rm -f build/Linux-framebuffer/utils_corestrings.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/utils_corestrings.d build/Linux-framebuffer/utils_corestrings.o' -MF build/Linux-framebuffer/deps/utils_corestrings.d -o build/Linux-framebuffer/utils_corestrings.o -c utils/corestrings.c
COMPILE: render/textplain.c
rm -f build/Linux-framebuffer/deps/render_textplain.d
rm -f build/Linux-framebuffer/render_textplain.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_textplain.d build/Linux-framebuffer/render_textplain.o' -MF build/Linux-framebuffer/deps/render_textplain.d -o build/Linux-framebuffer/render_textplain.o -c render/textplain.c
COMPILE: render/table.c
rm -f build/Linux-framebuffer/deps/render_table.d
rm -f build/Linux-framebuffer/render_table.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_table.d build/Linux-framebuffer/render_table.o' -MF build/Linux-framebuffer/deps/render_table.d -o build/Linux-framebuffer/render_table.o -c render/table.c
utils/filename.c: In function 'filename_delete_recursive':
utils/filename.c:391:40: warning: 'snprintf' output may be truncated before the last format character [-Wformat-truncation=]
snprintf(child, sizeof(child), "%s/%s", folder, entry->d_name);
^
utils/filename.c:391:3: note: 'snprintf' output 2 or more bytes (assuming 257) into a destination of size 256
snprintf(child, sizeof(child), "%s/%s", folder, entry->d_name);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
COMPILE: render/search.c
rm -f build/Linux-framebuffer/deps/render_search.d
rm -f build/Linux-framebuffer/render_search.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_search.d build/Linux-framebuffer/render_search.o' -MF build/Linux-framebuffer/deps/render_search.d -o build/Linux-framebuffer/render_search.o -c render/search.c
utils/filename.c: In function 'filename_flush_directory':
utils/filename.c:282:40: warning: 'snprintf' output may be truncated before the last format character [-Wformat-truncation=]
snprintf(child, sizeof(child), "%s/%s", folder, entry->d_name);
^
utils/filename.c:282:3: note: 'snprintf' output 2 or more bytes (assuming 257) into a destination of size 256
snprintf(child, sizeof(child), "%s/%s", folder, entry->d_name);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
COMPILE: render/layout.c
rm -f build/Linux-framebuffer/deps/render_layout.d
rm -f build/Linux-framebuffer/render_layout.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_layout.d build/Linux-framebuffer/render_layout.o' -MF build/Linux-framebuffer/deps/render_layout.d -o build/Linux-framebuffer/render_layout.o -c render/layout.c
COMPILE: render/imagemap.c
rm -f build/Linux-framebuffer/deps/render_imagemap.d
rm -f build/Linux-framebuffer/render_imagemap.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_imagemap.d build/Linux-framebuffer/render_imagemap.o' -MF build/Linux-framebuffer/deps/render_imagemap.d -o build/Linux-framebuffer/render_imagemap.o -c render/imagemap.c
render/table.c: In function 'table_border_is_more_eyecatching':
render/table.c:744:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_DOUBLE: impact++;
~~~~~~^~
render/table.c:745:2: note: here
case CSS_BORDER_STYLE_SOLID: impact++;
^~~~
render/table.c:745:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_SOLID: impact++;
~~~~~~^~
render/table.c:746:2: note: here
case CSS_BORDER_STYLE_DASHED: impact++;
^~~~
render/table.c:746:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_DASHED: impact++;
~~~~~~^~
render/table.c:747:2: note: here
case CSS_BORDER_STYLE_DOTTED: impact++;
^~~~
render/table.c:747:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_DOTTED: impact++;
~~~~~~^~
render/table.c:748:2: note: here
case CSS_BORDER_STYLE_RIDGE: impact++;
^~~~
render/table.c:748:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_RIDGE: impact++;
~~~~~~^~
render/table.c:749:2: note: here
case CSS_BORDER_STYLE_OUTSET: impact++;
^~~~
render/table.c:749:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_OUTSET: impact++;
~~~~~~^~
render/table.c:750:2: note: here
case CSS_BORDER_STYLE_GROOVE: impact++;
^~~~
render/table.c:750:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_GROOVE: impact++;
~~~~~~^~
render/table.c:751:2: note: here
case CSS_BORDER_STYLE_INSET: impact++;
^~~~
render/table.c:757:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_DOUBLE: impact--;
~~~~~~^~
render/table.c:758:2: note: here
case CSS_BORDER_STYLE_SOLID: impact--;
^~~~
render/table.c:758:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_SOLID: impact--;
~~~~~~^~
render/table.c:759:2: note: here
case CSS_BORDER_STYLE_DASHED: impact--;
^~~~
render/table.c:759:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_DASHED: impact--;
~~~~~~^~
render/table.c:760:2: note: here
case CSS_BORDER_STYLE_DOTTED: impact--;
^~~~
render/table.c:760:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_DOTTED: impact--;
~~~~~~^~
render/table.c:761:2: note: here
case CSS_BORDER_STYLE_RIDGE: impact--;
^~~~
render/table.c:761:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_RIDGE: impact--;
~~~~~~^~
render/table.c:762:2: note: here
case CSS_BORDER_STYLE_OUTSET: impact--;
^~~~
render/table.c:762:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_OUTSET: impact--;
~~~~~~^~
render/table.c:763:2: note: here
case CSS_BORDER_STYLE_GROOVE: impact--;
^~~~
render/table.c:763:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
case CSS_BORDER_STYLE_GROOVE: impact--;
~~~~~~^~
render/table.c:764:2: note: here
case CSS_BORDER_STYLE_INSET: impact--;
^~~~
render/table.c:778:35: warning: this statement may fall through [-Wimplicit-fallthrough=]
case BOX_TABLE_CELL: impact++;
~~~~~~^~
render/table.c:779:2: note: here
case BOX_TABLE_ROW: impact++;
^~~~
render/table.c:779:35: warning: this statement may fall through [-Wimplicit-fallthrough=]
case BOX_TABLE_ROW: impact++;
~~~~~~^~
render/table.c:780:2: note: here
case BOX_TABLE_ROW_GROUP: impact++;
^~~~
render/table.c:780:35: warning: this statement may fall through [-Wimplicit-fallthrough=]
case BOX_TABLE_ROW_GROUP: impact++;
~~~~~~^~
render/table.c:782:2: note: here
case BOX_TABLE: impact++;
^~~~
render/table.c:788:35: warning: this statement may fall through [-Wimplicit-fallthrough=]
case BOX_TABLE_CELL: impact--;
~~~~~~^~
render/table.c:789:2: note: here
case BOX_TABLE_ROW: impact--;
^~~~
render/table.c:789:35: warning: this statement may fall through [-Wimplicit-fallthrough=]
case BOX_TABLE_ROW: impact--;
~~~~~~^~
render/table.c:790:2: note: here
case BOX_TABLE_ROW_GROUP: impact--;
^~~~
render/table.c:790:35: warning: this statement may fall through [-Wimplicit-fallthrough=]
case BOX_TABLE_ROW_GROUP: impact--;
~~~~~~^~
render/table.c:792:2: note: here
case BOX_TABLE: impact--;
^~~~
utils/filename.c: In function 'filename_request':
utils/filename.c:99:30: warning: '%.2i' directive writing between 2 and 10 bytes into a region of size between 3 and 12 [-Wformat-overflow=]
sprintf(filename_buffer, "%s%.2i", dir->prefix, i);
^~~~
utils/filename.c:99:27: note: directive argument in the range [0, 2147483647]
sprintf(filename_buffer, "%s%.2i", dir->prefix, i);
^~~~~~~~
utils/filename.c:99:2: note: 'sprintf' output between 3 and 20 bytes into a destination of size 12
sprintf(filename_buffer, "%s%.2i", dir->prefix, i);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
COMPILE: render/html_script.c
rm -f build/Linux-framebuffer/deps/render_html_script.d
rm -f build/Linux-framebuffer/render_html_script.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_html_script.d build/Linux-framebuffer/render_html_script.o' -MF build/Linux-framebuffer/deps/render_html_script.d -o build/Linux-framebuffer/render_html_script.o -c render/html_script.c
COMPILE: render/html_redraw_border.c
rm -f build/Linux-framebuffer/deps/render_html_redraw_border.d
rm -f build/Linux-framebuffer/render_html_redraw_border.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_html_redraw_border.d build/Linux-framebuffer/render_html_redraw_border.o' -MF build/Linux-framebuffer/deps/render_html_redraw_border.d -o build/Linux-framebuffer/render_html_redraw_border.o -c render/html_redraw_border.c
COMPILE: render/html_redraw.c
rm -f build/Linux-framebuffer/deps/render_html_redraw.d
rm -f build/Linux-framebuffer/render_html_redraw.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_html_redraw.d build/Linux-framebuffer/render_html_redraw.o' -MF build/Linux-framebuffer/deps/render_html_redraw.d -o build/Linux-framebuffer/render_html_redraw.o -c render/html_redraw.c
COMPILE: render/html_object.c
rm -f build/Linux-framebuffer/deps/render_html_object.d
rm -f build/Linux-framebuffer/render_html_object.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_html_object.d build/Linux-framebuffer/render_html_object.o' -MF build/Linux-framebuffer/deps/render_html_object.d -o build/Linux-framebuffer/render_html_object.o -c render/html_object.c
COMPILE: render/html_interaction.c
rm -f build/Linux-framebuffer/deps/render_html_interaction.d
rm -f build/Linux-framebuffer/render_html_interaction.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_html_interaction.d build/Linux-framebuffer/render_html_interaction.o' -MF build/Linux-framebuffer/deps/render_html_interaction.d -o build/Linux-framebuffer/render_html_interaction.o -c render/html_interaction.c
render/html_interaction.c: In function 'html_mouse_action':
render/html_interaction.c:700:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
if (mouse & BROWSER_MOUSE_CLICK_1) {
^
render/html_interaction.c:718:3: note: here
case GADGET_SUBMIT:
^~~~
COMPILE: render/html_forms.c
rm -f build/Linux-framebuffer/deps/render_html_forms.d
rm -f build/Linux-framebuffer/render_html_forms.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_html_forms.d build/Linux-framebuffer/render_html_forms.o' -MF build/Linux-framebuffer/deps/render_html_forms.d -o build/Linux-framebuffer/render_html_forms.o -c render/html_forms.c
COMPILE: render/html_css_fetcher.c
rm -f build/Linux-framebuffer/deps/render_html_css_fetcher.d
rm -f build/Linux-framebuffer/render_html_css_fetcher.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_html_css_fetcher.d build/Linux-framebuffer/render_html_css_fetcher.o' -MF build/Linux-framebuffer/deps/render_html_css_fetcher.d -o build/Linux-framebuffer/render_html_css_fetcher.o -c render/html_css_fetcher.c
COMPILE: render/html_css.c
rm -f build/Linux-framebuffer/deps/render_html_css.d
rm -f build/Linux-framebuffer/render_html_css.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_html_css.d build/Linux-framebuffer/render_html_css.o' -MF build/Linux-framebuffer/deps/render_html_css.d -o build/Linux-framebuffer/render_html_css.o -c render/html_css.c
COMPILE: render/html.c
rm -f build/Linux-framebuffer/deps/render_html.d
rm -f build/Linux-framebuffer/render_html.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_html.d build/Linux-framebuffer/render_html.o' -MF build/Linux-framebuffer/deps/render_html.d -o build/Linux-framebuffer/render_html.o -c render/html.c
COMPILE: render/form.c
rm -f build/Linux-framebuffer/deps/render_form.d
rm -f build/Linux-framebuffer/render_form.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_form.d build/Linux-framebuffer/render_form.o' -MF build/Linux-framebuffer/deps/render_form.d -o build/Linux-framebuffer/render_form.o -c render/form.c
COMPILE: render/font.c
rm -f build/Linux-framebuffer/deps/render_font.d
rm -f build/Linux-framebuffer/render_font.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_font.d build/Linux-framebuffer/render_font.o' -MF build/Linux-framebuffer/deps/render_font.d -o build/Linux-framebuffer/render_font.o -c render/font.c
COMPILE: render/box_textarea.c
rm -f build/Linux-framebuffer/deps/render_box_textarea.d
rm -f build/Linux-framebuffer/render_box_textarea.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_box_textarea.d build/Linux-framebuffer/render_box_textarea.o' -MF build/Linux-framebuffer/deps/render_box_textarea.d -o build/Linux-framebuffer/render_box_textarea.o -c render/box_textarea.c
COMPILE: render/box_normalise.c
rm -f build/Linux-framebuffer/deps/render_box_normalise.d
rm -f build/Linux-framebuffer/render_box_normalise.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_box_normalise.d build/Linux-framebuffer/render_box_normalise.o' -MF build/Linux-framebuffer/deps/render_box_normalise.d -o build/Linux-framebuffer/render_box_normalise.o -c render/box_normalise.c
COMPILE: render/box_construct.c
rm -f build/Linux-framebuffer/deps/render_box_construct.d
rm -f build/Linux-framebuffer/render_box_construct.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_box_construct.d build/Linux-framebuffer/render_box_construct.o' -MF build/Linux-framebuffer/deps/render_box_construct.d -o build/Linux-framebuffer/render_box_construct.o -c render/box_construct.c
COMPILE: render/box.c
rm -f build/Linux-framebuffer/deps/render_box.d
rm -f build/Linux-framebuffer/render_box.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/render_box.d build/Linux-framebuffer/render_box.o' -MF build/Linux-framebuffer/deps/render_box.d -o build/Linux-framebuffer/render_box.o -c render/box.c
COMPILE: frontends/framebuffer/schedule.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_schedule.d
rm -f build/Linux-framebuffer/frontends_framebuffer_schedule.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_schedule.d build/Linux-framebuffer/frontends_framebuffer_schedule.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_schedule.d -o build/Linux-framebuffer/frontends_framebuffer_schedule.o -c frontends/framebuffer/schedule.c
COMPILE: frontends/framebuffer/local_history.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_local_history.d
rm -f build/Linux-framebuffer/frontends_framebuffer_local_history.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_local_history.d build/Linux-framebuffer/frontends_framebuffer_local_history.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_local_history.d -o build/Linux-framebuffer/frontends_framebuffer_local_history.o -c frontends/framebuffer/local_history.c
In file included from ./utils/log.h:78,
from frontends/framebuffer/schedule.c:23:
frontends/framebuffer/schedule.c: In function 'list_schedule':
frontends/framebuffer/schedule.c:203:30: warning: format '%ld' expects argument of type 'long int', but argument 4 has type 'suseconds_t' {aka 'int'} [-Wformat=]
NSLOG(netsurf, INFO, "schedule list at %ld:%ld", tv.tv_sec,
^~~~~~~~~~~~~~~~~~~~~~~~~~
tv.tv_usec);
~~~~~~~~~~
/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/nslog/nslog.h:185:28: note: in definition of macro 'NSLOG'
nslog__log(&_nslog_ctx, logmsg, ##args); \
^~~~~~
frontends/framebuffer/schedule.c:209:38: warning: format '%ld' expects argument of type 'long int', but argument 5 has type 'suseconds_t' {aka 'int'} [-Wformat=]
NSLOG(netsurf, INFO, "Schedule %p at %ld:%ld", cur_nscb,
^~~~~~~~~~~~~~~~~~~~~~~~
cur_nscb->tv.tv_sec, cur_nscb->tv.tv_usec);
~~~~~~~~~~~~~~~~~~~~
/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/nslog/nslog.h:185:28: note: in definition of macro 'NSLOG'
nslog__log(&_nslog_ctx, logmsg, ##args); \
^~~~~~
COMPILE: frontends/framebuffer/gui.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_gui.d
rm -f build/Linux-framebuffer/frontends_framebuffer_gui.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_gui.d build/Linux-framebuffer/frontends_framebuffer_gui.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_gui.d -o build/Linux-framebuffer/frontends_framebuffer_gui.o -c frontends/framebuffer/gui.c
frontends/framebuffer/gui.c: In function 'fb_browser_window_input':
frontends/framebuffer/gui.c:947:14: warning: this statement may fall through [-Wimplicit-fallthrough=]
} else if (cbi->event->value.keycode == NSFB_KEY_y &&
^
frontends/framebuffer/gui.c:957:3: note: here
default:
^~~~~~~
COMPILE: frontends/framebuffer/framebuffer.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_framebuffer.d
rm -f build/Linux-framebuffer/frontends_framebuffer_framebuffer.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_framebuffer.d build/Linux-framebuffer/frontends_framebuffer_framebuffer.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_framebuffer.d -o build/Linux-framebuffer/frontends_framebuffer_framebuffer.o -c frontends/framebuffer/framebuffer.c
COMPILE: frontends/framebuffer/font_freetype.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_font_freetype.d
rm -f build/Linux-framebuffer/frontends_framebuffer_font_freetype.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_font_freetype.d build/Linux-framebuffer/frontends_framebuffer_font_freetype.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_font_freetype.d -o build/Linux-framebuffer/frontends_framebuffer_font_freetype.o -c frontends/framebuffer/font_freetype.c
COMPILE: frontends/framebuffer/fetch.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_fetch.d
rm -f build/Linux-framebuffer/frontends_framebuffer_fetch.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_fetch.d build/Linux-framebuffer/frontends_framebuffer_fetch.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_fetch.d -o build/Linux-framebuffer/frontends_framebuffer_fetch.o -c frontends/framebuffer/fetch.c
COMPILE: frontends/framebuffer/fbtk/window.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_window.d
rm -f build/Linux-framebuffer/frontends_framebuffer_fbtk_window.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_window.d build/Linux-framebuffer/frontends_framebuffer_fbtk_window.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_window.d -o build/Linux-framebuffer/frontends_framebuffer_fbtk_window.o -c frontends/framebuffer/fbtk/window.c
COMPILE: frontends/framebuffer/fbtk/user.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_user.d
rm -f build/Linux-framebuffer/frontends_framebuffer_fbtk_user.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_user.d build/Linux-framebuffer/frontends_framebuffer_fbtk_user.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_user.d -o build/Linux-framebuffer/frontends_framebuffer_fbtk_user.o -c frontends/framebuffer/fbtk/user.c
COMPILE: frontends/framebuffer/fbtk/text.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_text.d
rm -f build/Linux-framebuffer/frontends_framebuffer_fbtk_text.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_text.d build/Linux-framebuffer/frontends_framebuffer_fbtk_text.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_text.d -o build/Linux-framebuffer/frontends_framebuffer_fbtk_text.o -c frontends/framebuffer/fbtk/text.c
COMPILE: frontends/framebuffer/fbtk/scroll.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_scroll.d
rm -f build/Linux-framebuffer/frontends_framebuffer_fbtk_scroll.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_scroll.d build/Linux-framebuffer/frontends_framebuffer_fbtk_scroll.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_scroll.d -o build/Linux-framebuffer/frontends_framebuffer_fbtk_scroll.o -c frontends/framebuffer/fbtk/scroll.c
COMPILE: frontends/framebuffer/fbtk/osk.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_osk.d
rm -f build/Linux-framebuffer/frontends_framebuffer_fbtk_osk.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_osk.d build/Linux-framebuffer/frontends_framebuffer_fbtk_osk.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_osk.d -o build/Linux-framebuffer/frontends_framebuffer_fbtk_osk.o -c frontends/framebuffer/fbtk/osk.c
COMPILE: frontends/framebuffer/fbtk/fill.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_fill.d
rm -f build/Linux-framebuffer/frontends_framebuffer_fbtk_fill.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_fill.d build/Linux-framebuffer/frontends_framebuffer_fbtk_fill.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_fill.d -o build/Linux-framebuffer/frontends_framebuffer_fbtk_fill.o -c frontends/framebuffer/fbtk/fill.c
COMPILE: frontends/framebuffer/fbtk/fbtk.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_fbtk.d
rm -f build/Linux-framebuffer/frontends_framebuffer_fbtk_fbtk.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_fbtk.d build/Linux-framebuffer/frontends_framebuffer_fbtk_fbtk.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_fbtk.d -o build/Linux-framebuffer/frontends_framebuffer_fbtk_fbtk.o -c frontends/framebuffer/fbtk/fbtk.c
COMPILE: frontends/framebuffer/fbtk/event.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_event.d
rm -f build/Linux-framebuffer/frontends_framebuffer_fbtk_event.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_event.d build/Linux-framebuffer/frontends_framebuffer_fbtk_event.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_event.d -o build/Linux-framebuffer/frontends_framebuffer_fbtk_event.o -c frontends/framebuffer/fbtk/event.c
COMPILE: frontends/framebuffer/fbtk/bitmap.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_bitmap.d
rm -f build/Linux-framebuffer/frontends_framebuffer_fbtk_bitmap.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_bitmap.d build/Linux-framebuffer/frontends_framebuffer_fbtk_bitmap.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_fbtk_bitmap.d -o build/Linux-framebuffer/frontends_framebuffer_fbtk_bitmap.o -c frontends/framebuffer/fbtk/bitmap.c
COMPILE: frontends/framebuffer/corewindow.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_corewindow.d
rm -f build/Linux-framebuffer/frontends_framebuffer_corewindow.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_corewindow.d build/Linux-framebuffer/frontends_framebuffer_corewindow.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_corewindow.d -o build/Linux-framebuffer/frontends_framebuffer_corewindow.o -c frontends/framebuffer/corewindow.c
COMPILE: frontends/framebuffer/clipboard.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_clipboard.d
rm -f build/Linux-framebuffer/frontends_framebuffer_clipboard.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_clipboard.d build/Linux-framebuffer/frontends_framebuffer_clipboard.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_clipboard.d -o build/Linux-framebuffer/frontends_framebuffer_clipboard.o -c frontends/framebuffer/clipboard.c
COMPILE: frontends/framebuffer/bitmap.c
rm -f build/Linux-framebuffer/deps/frontends_framebuffer_bitmap.d
rm -f build/Linux-framebuffer/frontends_framebuffer_bitmap.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/frontends_framebuffer_bitmap.d build/Linux-framebuffer/frontends_framebuffer_bitmap.o' -MF build/Linux-framebuffer/deps/frontends_framebuffer_bitmap.d -o build/Linux-framebuffer/frontends_framebuffer_bitmap.o -c frontends/framebuffer/bitmap.c
perl utils/git-testament.pl /home/tyhdefu/redox/cookbook/recipes/netsurf/build/netsurf build/Linux-framebuffer/testament.h
COMPILE: desktop/treeview.c
rm -f build/Linux-framebuffer/deps/desktop_treeview.d
rm -f build/Linux-framebuffer/desktop_treeview.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_treeview.d build/Linux-framebuffer/desktop_treeview.o' -MF build/Linux-framebuffer/deps/desktop_treeview.d -o build/Linux-framebuffer/desktop_treeview.o -c desktop/treeview.c
COMPILE: desktop/textinput.c
rm -f build/Linux-framebuffer/deps/desktop_textinput.d
rm -f build/Linux-framebuffer/desktop_textinput.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_textinput.d build/Linux-framebuffer/desktop_textinput.o' -MF build/Linux-framebuffer/deps/desktop_textinput.d -o build/Linux-framebuffer/desktop_textinput.o -c desktop/textinput.c
TESTMENT: unchanged
COMPILE: desktop/textarea.c
rm -f build/Linux-framebuffer/deps/desktop_textarea.d
rm -f build/Linux-framebuffer/desktop_textarea.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_textarea.d build/Linux-framebuffer/desktop_textarea.o' -MF build/Linux-framebuffer/deps/desktop_textarea.d -o build/Linux-framebuffer/desktop_textarea.o -c desktop/textarea.c
COMPILE: desktop/system_colour.c
rm -f build/Linux-framebuffer/deps/desktop_system_colour.d
rm -f build/Linux-framebuffer/desktop_system_colour.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_system_colour.d build/Linux-framebuffer/desktop_system_colour.o' -MF build/Linux-framebuffer/deps/desktop_system_colour.d -o build/Linux-framebuffer/desktop_system_colour.o -c desktop/system_colour.c
COMPILE: desktop/sslcert_viewer.c
rm -f build/Linux-framebuffer/deps/desktop_sslcert_viewer.d
rm -f build/Linux-framebuffer/desktop_sslcert_viewer.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_sslcert_viewer.d build/Linux-framebuffer/desktop_sslcert_viewer.o' -MF build/Linux-framebuffer/deps/desktop_sslcert_viewer.d -o build/Linux-framebuffer/desktop_sslcert_viewer.o -c desktop/sslcert_viewer.c
COMPILE: desktop/selection.c
rm -f build/Linux-framebuffer/deps/desktop_selection.d
rm -f build/Linux-framebuffer/desktop_selection.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_selection.d build/Linux-framebuffer/desktop_selection.o' -MF build/Linux-framebuffer/deps/desktop_selection.d -o build/Linux-framebuffer/desktop_selection.o -c desktop/selection.c
desktop/textarea.c: In function 'textarea_keypress':
desktop/textarea.c:2864:12: warning: '~' on a boolean expression [-Wbool-operation]
redraw &= ~textarea_set_caret_internal(ta, caret);
^
desktop/textarea.c:2864:12: note: did you mean to use logical not?
redraw &= ~textarea_set_caret_internal(ta, caret);
^
!
COMPILE: desktop/searchweb.c
rm -f build/Linux-framebuffer/deps/desktop_searchweb.d
rm -f build/Linux-framebuffer/desktop_searchweb.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_searchweb.d build/Linux-framebuffer/desktop_searchweb.o' -MF build/Linux-framebuffer/deps/desktop_searchweb.d -o build/Linux-framebuffer/desktop_searchweb.o -c desktop/searchweb.c
COMPILE: desktop/search.c
rm -f build/Linux-framebuffer/deps/desktop_search.d
rm -f build/Linux-framebuffer/desktop_search.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_search.d build/Linux-framebuffer/desktop_search.o' -MF build/Linux-framebuffer/deps/desktop_search.d -o build/Linux-framebuffer/desktop_search.o -c desktop/search.c
COMPILE: desktop/scrollbar.c
rm -f build/Linux-framebuffer/deps/desktop_scrollbar.d
rm -f build/Linux-framebuffer/desktop_scrollbar.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_scrollbar.d build/Linux-framebuffer/desktop_scrollbar.o' -MF build/Linux-framebuffer/deps/desktop_scrollbar.d -o build/Linux-framebuffer/desktop_scrollbar.o -c desktop/scrollbar.c
COMPILE: desktop/save_text.c
rm -f build/Linux-framebuffer/deps/desktop_save_text.d
rm -f build/Linux-framebuffer/desktop_save_text.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_save_text.d build/Linux-framebuffer/desktop_save_text.o' -MF build/Linux-framebuffer/deps/desktop_save_text.d -o build/Linux-framebuffer/desktop_save_text.o -c desktop/save_text.c
COMPILE: desktop/save_pdf.c
rm -f build/Linux-framebuffer/deps/desktop_save_pdf.d
rm -f build/Linux-framebuffer/desktop_save_pdf.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_save_pdf.d build/Linux-framebuffer/desktop_save_pdf.o' -MF build/Linux-framebuffer/deps/desktop_save_pdf.d -o build/Linux-framebuffer/desktop_save_pdf.o -c desktop/save_pdf.c
COMPILE: desktop/save_complete.c
rm -f build/Linux-framebuffer/deps/desktop_save_complete.d
rm -f build/Linux-framebuffer/desktop_save_complete.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_save_complete.d build/Linux-framebuffer/desktop_save_complete.o' -MF build/Linux-framebuffer/deps/desktop_save_complete.d -o build/Linux-framebuffer/desktop_save_complete.o -c desktop/save_complete.c
COMPILE: desktop/print.c
rm -f build/Linux-framebuffer/deps/desktop_print.d
rm -f build/Linux-framebuffer/desktop_print.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_print.d build/Linux-framebuffer/desktop_print.o' -MF build/Linux-framebuffer/deps/desktop_print.d -o build/Linux-framebuffer/desktop_print.o -c desktop/print.c
COMPILE: desktop/netsurf.c
rm -f build/Linux-framebuffer/deps/desktop_netsurf.d
rm -f build/Linux-framebuffer/desktop_netsurf.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_netsurf.d build/Linux-framebuffer/desktop_netsurf.o' -MF build/Linux-framebuffer/deps/desktop_netsurf.d -o build/Linux-framebuffer/desktop_netsurf.o -c desktop/netsurf.c
desktop/save_complete.c: In function 'save_complete_rewrite_stylesheet_urls':
desktop/save_complete.c:243:22: warning: comparison of integer expressions of different signedness: 'regoff_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
if (match[2].rm_so != -1) {
^~
desktop/save_complete.c:246:29: warning: comparison of integer expressions of different signedness: 'regoff_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
} else if (match[4].rm_so != -1) {
^~
desktop/save_complete.c:249:29: warning: comparison of integer expressions of different signedness: 'regoff_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
} else if (match[6].rm_so != -1) {
^~
desktop/save_complete.c:252:29: warning: comparison of integer expressions of different signedness: 'regoff_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
} else if (match[8].rm_so != -1) {
^~
desktop/save_complete.c:255:30: warning: comparison of integer expressions of different signedness: 'regoff_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
} else if (match[10].rm_so != -1) {
^~
COMPILE: desktop/mouse.c
rm -f build/Linux-framebuffer/deps/desktop_mouse.d
rm -f build/Linux-framebuffer/desktop_mouse.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_mouse.d build/Linux-framebuffer/desktop_mouse.o' -MF build/Linux-framebuffer/deps/desktop_mouse.d -o build/Linux-framebuffer/desktop_mouse.o -c desktop/mouse.c
COMPILE: desktop/local_history.c
rm -f build/Linux-framebuffer/deps/desktop_local_history.d
rm -f build/Linux-framebuffer/desktop_local_history.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_local_history.d build/Linux-framebuffer/desktop_local_history.o' -MF build/Linux-framebuffer/deps/desktop_local_history.d -o build/Linux-framebuffer/desktop_local_history.o -c desktop/local_history.c
COMPILE: desktop/knockout.c
rm -f build/Linux-framebuffer/deps/desktop_knockout.d
rm -f build/Linux-framebuffer/desktop_knockout.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_knockout.d build/Linux-framebuffer/desktop_knockout.o' -MF build/Linux-framebuffer/deps/desktop_knockout.d -o build/Linux-framebuffer/desktop_knockout.o -c desktop/knockout.c
COMPILE: desktop/hotlist.c
rm -f build/Linux-framebuffer/deps/desktop_hotlist.d
rm -f build/Linux-framebuffer/desktop_hotlist.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_hotlist.d build/Linux-framebuffer/desktop_hotlist.o' -MF build/Linux-framebuffer/deps/desktop_hotlist.d -o build/Linux-framebuffer/desktop_hotlist.o -c desktop/hotlist.c
COMPILE: desktop/gui_factory.c
rm -f build/Linux-framebuffer/deps/desktop_gui_factory.d
rm -f build/Linux-framebuffer/desktop_gui_factory.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_gui_factory.d build/Linux-framebuffer/desktop_gui_factory.o' -MF build/Linux-framebuffer/deps/desktop_gui_factory.d -o build/Linux-framebuffer/desktop_gui_factory.o -c desktop/gui_factory.c
COMPILE: desktop/global_history.c
rm -f build/Linux-framebuffer/deps/desktop_global_history.d
rm -f build/Linux-framebuffer/desktop_global_history.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_global_history.d build/Linux-framebuffer/desktop_global_history.o' -MF build/Linux-framebuffer/deps/desktop_global_history.d -o build/Linux-framebuffer/desktop_global_history.o -c desktop/global_history.c
COMPILE: desktop/frames.c
rm -f build/Linux-framebuffer/deps/desktop_frames.d
rm -f build/Linux-framebuffer/desktop_frames.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_frames.d build/Linux-framebuffer/desktop_frames.o' -MF build/Linux-framebuffer/deps/desktop_frames.d -o build/Linux-framebuffer/desktop_frames.o -c desktop/frames.c
COMPILE: desktop/download.c
rm -f build/Linux-framebuffer/deps/desktop_download.d
rm -f build/Linux-framebuffer/desktop_download.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_download.d build/Linux-framebuffer/desktop_download.o' -MF build/Linux-framebuffer/deps/desktop_download.d -o build/Linux-framebuffer/desktop_download.o -c desktop/download.c
COMPILE: desktop/cookie_manager.c
rm -f build/Linux-framebuffer/deps/desktop_cookie_manager.d
rm -f build/Linux-framebuffer/desktop_cookie_manager.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_cookie_manager.d build/Linux-framebuffer/desktop_cookie_manager.o' -MF build/Linux-framebuffer/deps/desktop_cookie_manager.d -o build/Linux-framebuffer/desktop_cookie_manager.o -c desktop/cookie_manager.c
COMPILE: desktop/browser_history.c
rm -f build/Linux-framebuffer/deps/desktop_browser_history.d
rm -f build/Linux-framebuffer/desktop_browser_history.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_browser_history.d build/Linux-framebuffer/desktop_browser_history.o' -MF build/Linux-framebuffer/deps/desktop_browser_history.d -o build/Linux-framebuffer/desktop_browser_history.o -c desktop/browser_history.c
COMPILE: desktop/browser.c
rm -f build/Linux-framebuffer/deps/desktop_browser.d
rm -f build/Linux-framebuffer/desktop_browser.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/desktop_browser.d build/Linux-framebuffer/desktop_browser.o' -MF build/Linux-framebuffer/deps/desktop_browser.d -o build/Linux-framebuffer/desktop_browser.o -c desktop/browser.c
COMPILE: content/urldb.c
rm -f build/Linux-framebuffer/deps/content_urldb.d
rm -f build/Linux-framebuffer/content_urldb.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_urldb.d build/Linux-framebuffer/content_urldb.o' -MF build/Linux-framebuffer/deps/content_urldb.d -o build/Linux-framebuffer/content_urldb.o -c content/urldb.c
COMPILE: content/no_backing_store.c
rm -f build/Linux-framebuffer/deps/content_no_backing_store.d
rm -f build/Linux-framebuffer/content_no_backing_store.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_no_backing_store.d build/Linux-framebuffer/content_no_backing_store.o' -MF build/Linux-framebuffer/deps/content_no_backing_store.d -o build/Linux-framebuffer/content_no_backing_store.o -c content/no_backing_store.c
COMPILE: content/mimesniff.c
rm -f build/Linux-framebuffer/deps/content_mimesniff.d
rm -f build/Linux-framebuffer/content_mimesniff.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_mimesniff.d build/Linux-framebuffer/content_mimesniff.o' -MF build/Linux-framebuffer/deps/content_mimesniff.d -o build/Linux-framebuffer/content_mimesniff.o -c content/mimesniff.c
COMPILE: content/llcache.c
rm -f build/Linux-framebuffer/deps/content_llcache.d
rm -f build/Linux-framebuffer/content_llcache.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_llcache.d build/Linux-framebuffer/content_llcache.o' -MF build/Linux-framebuffer/deps/content_llcache.d -o build/Linux-framebuffer/content_llcache.o -c content/llcache.c
COMPILE: content/hlcache.c
rm -f build/Linux-framebuffer/deps/content_hlcache.d
rm -f build/Linux-framebuffer/content_hlcache.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_hlcache.d build/Linux-framebuffer/content_hlcache.o' -MF build/Linux-framebuffer/deps/content_hlcache.d -o build/Linux-framebuffer/content_hlcache.o -c content/hlcache.c
COMPILE: content/handlers/javascript/none/none.c
rm -f build/Linux-framebuffer/deps/content_handlers_javascript_none_none.d
rm -f build/Linux-framebuffer/content_handlers_javascript_none_none.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_javascript_none_none.d build/Linux-framebuffer/content_handlers_javascript_none_none.o' -MF build/Linux-framebuffer/deps/content_handlers_javascript_none_none.d -o build/Linux-framebuffer/content_handlers_javascript_none_none.o -c content/handlers/javascript/none/none.c
content/llcache.c: In function 'llcache_fetch_callback':
content/llcache.c:2696:6: warning: this statement may fall through [-Wimplicit-fallthrough=]
if (object->fetch.retries_remaining > 1) {
^
content/llcache.c:2704:2: note: here
case FETCH_ERROR:
^~~~
COMPILE: content/handlers/javascript/fetcher.c
rm -f build/Linux-framebuffer/deps/content_handlers_javascript_fetcher.d
rm -f build/Linux-framebuffer/content_handlers_javascript_fetcher.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_javascript_fetcher.d build/Linux-framebuffer/content_handlers_javascript_fetcher.o' -MF build/Linux-framebuffer/deps/content_handlers_javascript_fetcher.d -o build/Linux-framebuffer/content_handlers_javascript_fetcher.o -c content/handlers/javascript/fetcher.c
COMPILE: content/handlers/image/png.c
rm -f build/Linux-framebuffer/deps/content_handlers_image_png.d
rm -f build/Linux-framebuffer/content_handlers_image_png.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_image_png.d build/Linux-framebuffer/content_handlers_image_png.o' -MF build/Linux-framebuffer/deps/content_handlers_image_png.d -o build/Linux-framebuffer/content_handlers_image_png.o -c content/handlers/image/png.c
COMPILE: content/handlers/image/nssprite.c
rm -f build/Linux-framebuffer/deps/content_handlers_image_nssprite.d
rm -f build/Linux-framebuffer/content_handlers_image_nssprite.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_image_nssprite.d build/Linux-framebuffer/content_handlers_image_nssprite.o' -MF build/Linux-framebuffer/deps/content_handlers_image_nssprite.d -o build/Linux-framebuffer/content_handlers_image_nssprite.o -c content/handlers/image/nssprite.c
COMPILE: content/handlers/image/jpeg.c
rm -f build/Linux-framebuffer/deps/content_handlers_image_jpeg.d
rm -f build/Linux-framebuffer/content_handlers_image_jpeg.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_image_jpeg.d build/Linux-framebuffer/content_handlers_image_jpeg.o' -MF build/Linux-framebuffer/deps/content_handlers_image_jpeg.d -o build/Linux-framebuffer/content_handlers_image_jpeg.o -c content/handlers/image/jpeg.c
COMPILE: content/handlers/image/image_cache.c
rm -f build/Linux-framebuffer/deps/content_handlers_image_image_cache.d
rm -f build/Linux-framebuffer/content_handlers_image_image_cache.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_image_image_cache.d build/Linux-framebuffer/content_handlers_image_image_cache.o' -MF build/Linux-framebuffer/deps/content_handlers_image_image_cache.d -o build/Linux-framebuffer/content_handlers_image_image_cache.o -c content/handlers/image/image_cache.c
COMPILE: content/handlers/image/image.c
rm -f build/Linux-framebuffer/deps/content_handlers_image_image.d
rm -f build/Linux-framebuffer/content_handlers_image_image.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_image_image.d build/Linux-framebuffer/content_handlers_image_image.o' -MF build/Linux-framebuffer/deps/content_handlers_image_image.d -o build/Linux-framebuffer/content_handlers_image_image.o -c content/handlers/image/image.c
COMPILE: content/handlers/image/ico.c
rm -f build/Linux-framebuffer/deps/content_handlers_image_ico.d
rm -f build/Linux-framebuffer/content_handlers_image_ico.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_image_ico.d build/Linux-framebuffer/content_handlers_image_ico.o' -MF build/Linux-framebuffer/deps/content_handlers_image_ico.d -o build/Linux-framebuffer/content_handlers_image_ico.o -c content/handlers/image/ico.c
COMPILE: content/handlers/image/gif.c
rm -f build/Linux-framebuffer/deps/content_handlers_image_gif.d
rm -f build/Linux-framebuffer/content_handlers_image_gif.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_image_gif.d build/Linux-framebuffer/content_handlers_image_gif.o' -MF build/Linux-framebuffer/deps/content_handlers_image_gif.d -o build/Linux-framebuffer/content_handlers_image_gif.o -c content/handlers/image/gif.c
COMPILE: content/handlers/image/bmp.c
rm -f build/Linux-framebuffer/deps/content_handlers_image_bmp.d
rm -f build/Linux-framebuffer/content_handlers_image_bmp.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_image_bmp.d build/Linux-framebuffer/content_handlers_image_bmp.o' -MF build/Linux-framebuffer/deps/content_handlers_image_bmp.d -o build/Linux-framebuffer/content_handlers_image_bmp.o -c content/handlers/image/bmp.c
COMPILE: content/handlers/css/utils.c
rm -f build/Linux-framebuffer/deps/content_handlers_css_utils.d
rm -f build/Linux-framebuffer/content_handlers_css_utils.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_css_utils.d build/Linux-framebuffer/content_handlers_css_utils.o' -MF build/Linux-framebuffer/deps/content_handlers_css_utils.d -o build/Linux-framebuffer/content_handlers_css_utils.o -c content/handlers/css/utils.c
COMPILE: content/handlers/css/select.c
rm -f build/Linux-framebuffer/deps/content_handlers_css_select.d
rm -f build/Linux-framebuffer/content_handlers_css_select.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_css_select.d build/Linux-framebuffer/content_handlers_css_select.o' -MF build/Linux-framebuffer/deps/content_handlers_css_select.d -o build/Linux-framebuffer/content_handlers_css_select.o -c content/handlers/css/select.c
COMPILE: content/handlers/css/internal.c
rm -f build/Linux-framebuffer/deps/content_handlers_css_internal.d
rm -f build/Linux-framebuffer/content_handlers_css_internal.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_css_internal.d build/Linux-framebuffer/content_handlers_css_internal.o' -MF build/Linux-framebuffer/deps/content_handlers_css_internal.d -o build/Linux-framebuffer/content_handlers_css_internal.o -c content/handlers/css/internal.c
COMPILE: content/handlers/css/hints.c
rm -f build/Linux-framebuffer/deps/content_handlers_css_hints.d
rm -f build/Linux-framebuffer/content_handlers_css_hints.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_css_hints.d build/Linux-framebuffer/content_handlers_css_hints.o' -MF build/Linux-framebuffer/deps/content_handlers_css_hints.d -o build/Linux-framebuffer/content_handlers_css_hints.o -c content/handlers/css/hints.c
content/urldb.c: In function 'urldb_load':
content/urldb.c:2964:44: warning: 'snprintf' output may be truncated before the last format character [-Wformat-truncation=]
snprintf(url, sizeof url, "%s://%s%s%s%s",
^
content/urldb.c:2964:4: note: 'snprintf' output between 4 and 4427 bytes into a destination of size 4426
snprintf(url, sizeof url, "%s://%s%s%s%s",
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
scheme,
~~~~~~~
/* file URLs have no host */
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
(is_file ? "" : host),
~~~~~~~~~~~~~~~~~~~~~~
(port ? ":" : ""),
~~~~~~~~~~~~~~~~~~
(port ? ports : ""),
~~~~~~~~~~~~~~~~~~~~
s);
~~
COMPILE: content/handlers/css/dump.c
rm -f build/Linux-framebuffer/deps/content_handlers_css_dump.d
rm -f build/Linux-framebuffer/content_handlers_css_dump.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_css_dump.d build/Linux-framebuffer/content_handlers_css_dump.o' -MF build/Linux-framebuffer/deps/content_handlers_css_dump.d -o build/Linux-framebuffer/content_handlers_css_dump.o -c content/handlers/css/dump.c
COMPILE: content/handlers/css/css.c
rm -f build/Linux-framebuffer/deps/content_handlers_css_css.d
rm -f build/Linux-framebuffer/content_handlers_css_css.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_handlers_css_css.d build/Linux-framebuffer/content_handlers_css_css.o' -MF build/Linux-framebuffer/deps/content_handlers_css_css.d -o build/Linux-framebuffer/content_handlers_css_css.o -c content/handlers/css/css.c
COMPILE: content/fetchers/resource.c
rm -f build/Linux-framebuffer/deps/content_fetchers_resource.d
rm -f build/Linux-framebuffer/content_fetchers_resource.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_fetchers_resource.d build/Linux-framebuffer/content_fetchers_resource.o' -MF build/Linux-framebuffer/deps/content_fetchers_resource.d -o build/Linux-framebuffer/content_fetchers_resource.o -c content/fetchers/resource.c
COMPILE: content/fetchers/file.c
rm -f build/Linux-framebuffer/deps/content_fetchers_file.d
rm -f build/Linux-framebuffer/content_fetchers_file.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_fetchers_file.d build/Linux-framebuffer/content_fetchers_file.o' -MF build/Linux-framebuffer/deps/content_fetchers_file.d -o build/Linux-framebuffer/content_fetchers_file.o -c content/fetchers/file.c
COMPILE: content/fetchers/data.c
rm -f build/Linux-framebuffer/deps/content_fetchers_data.d
rm -f build/Linux-framebuffer/content_fetchers_data.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_fetchers_data.d build/Linux-framebuffer/content_fetchers_data.o' -MF build/Linux-framebuffer/deps/content_fetchers_data.d -o build/Linux-framebuffer/content_fetchers_data.o -c content/fetchers/data.c
COMPILE: content/fetchers/curl.c
rm -f build/Linux-framebuffer/deps/content_fetchers_curl.d
rm -f build/Linux-framebuffer/content_fetchers_curl.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_fetchers_curl.d build/Linux-framebuffer/content_fetchers_curl.o' -MF build/Linux-framebuffer/deps/content_fetchers_curl.d -o build/Linux-framebuffer/content_fetchers_curl.o -c content/fetchers/curl.c
COMPILE: content/fetchers/about.c
rm -f build/Linux-framebuffer/deps/content_fetchers_about.d
rm -f build/Linux-framebuffer/content_fetchers_about.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_fetchers_about.d build/Linux-framebuffer/content_fetchers_about.o' -MF build/Linux-framebuffer/deps/content_fetchers_about.d -o build/Linux-framebuffer/content_fetchers_about.o -c content/fetchers/about.c
COMPILE: content/fetch.c
rm -f build/Linux-framebuffer/deps/content_fetch.d
rm -f build/Linux-framebuffer/content_fetch.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_fetch.d build/Linux-framebuffer/content_fetch.o' -MF build/Linux-framebuffer/deps/content_fetch.d -o build/Linux-framebuffer/content_fetch.o -c content/fetch.c
COMPILE: content/dirlist.c
rm -f build/Linux-framebuffer/deps/content_dirlist.d
rm -f build/Linux-framebuffer/content_dirlist.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_dirlist.d build/Linux-framebuffer/content_dirlist.o' -MF build/Linux-framebuffer/deps/content_dirlist.d -o build/Linux-framebuffer/content_dirlist.o -c content/dirlist.c
COMPILE: content/content_factory.c
rm -f build/Linux-framebuffer/deps/content_content_factory.d
rm -f build/Linux-framebuffer/content_content_factory.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_content_factory.d build/Linux-framebuffer/content_content_factory.o' -MF build/Linux-framebuffer/deps/content_content_factory.d -o build/Linux-framebuffer/content_content_factory.o -c content/content_factory.c
COMPILE: content/content.c
rm -f build/Linux-framebuffer/deps/content_content.d
rm -f build/Linux-framebuffer/content_content.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/content_content.d build/Linux-framebuffer/content_content.o' -MF build/Linux-framebuffer/deps/content_content.d -o build/Linux-framebuffer/content_content.o -c content/content.c
COMPILE: build/Linux-framebuffer/image-throbber8.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber8.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-throbber8.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber8.d build/Linux-framebuffer/build_Linux-framebuffer_image-throbber8.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber8.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber8.o -c build/Linux-framebuffer/image-throbber8.c
COMPILE: build/Linux-framebuffer/image-throbber7.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber7.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-throbber7.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber7.d build/Linux-framebuffer/build_Linux-framebuffer_image-throbber7.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber7.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber7.o -c build/Linux-framebuffer/image-throbber7.c
COMPILE: build/Linux-framebuffer/image-throbber6.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber6.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-throbber6.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber6.d build/Linux-framebuffer/build_Linux-framebuffer_image-throbber6.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber6.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber6.o -c build/Linux-framebuffer/image-throbber6.c
COMPILE: build/Linux-framebuffer/image-throbber5.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber5.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-throbber5.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber5.d build/Linux-framebuffer/build_Linux-framebuffer_image-throbber5.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber5.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber5.o -c build/Linux-framebuffer/image-throbber5.c
COMPILE: build/Linux-framebuffer/image-throbber4.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber4.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-throbber4.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber4.d build/Linux-framebuffer/build_Linux-framebuffer_image-throbber4.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber4.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber4.o -c build/Linux-framebuffer/image-throbber4.c
COMPILE: build/Linux-framebuffer/image-throbber3.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber3.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-throbber3.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber3.d build/Linux-framebuffer/build_Linux-framebuffer_image-throbber3.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber3.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber3.o -c build/Linux-framebuffer/image-throbber3.c
COMPILE: build/Linux-framebuffer/image-throbber2.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber2.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-throbber2.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber2.d build/Linux-framebuffer/build_Linux-framebuffer_image-throbber2.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber2.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber2.o -c build/Linux-framebuffer/image-throbber2.c
COMPILE: build/Linux-framebuffer/image-throbber1.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber1.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-throbber1.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber1.d build/Linux-framebuffer/build_Linux-framebuffer_image-throbber1.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber1.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber1.o -c build/Linux-framebuffer/image-throbber1.c
COMPILE: build/Linux-framebuffer/image-throbber0.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber0.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-throbber0.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber0.d build/Linux-framebuffer/build_Linux-framebuffer_image-throbber0.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-throbber0.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber0.o -c build/Linux-framebuffer/image-throbber0.c
COMPILE: build/Linux-framebuffer/image-stop_image_g.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-stop_image_g.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-stop_image_g.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-stop_image_g.d build/Linux-framebuffer/build_Linux-framebuffer_image-stop_image_g.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-stop_image_g.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-stop_image_g.o -c build/Linux-framebuffer/image-stop_image_g.c
COMPILE: build/Linux-framebuffer/image-stop_image.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-stop_image.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-stop_image.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-stop_image.d build/Linux-framebuffer/build_Linux-framebuffer_image-stop_image.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-stop_image.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-stop_image.o -c build/Linux-framebuffer/image-stop_image.c
COMPILE: build/Linux-framebuffer/image-scrollu.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-scrollu.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-scrollu.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-scrollu.d build/Linux-framebuffer/build_Linux-framebuffer_image-scrollu.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-scrollu.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-scrollu.o -c build/Linux-framebuffer/image-scrollu.c
COMPILE: build/Linux-framebuffer/image-scrollr.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-scrollr.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-scrollr.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-scrollr.d build/Linux-framebuffer/build_Linux-framebuffer_image-scrollr.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-scrollr.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-scrollr.o -c build/Linux-framebuffer/image-scrollr.c
COMPILE: build/Linux-framebuffer/image-scrolll.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-scrolll.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-scrolll.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-scrolll.d build/Linux-framebuffer/build_Linux-framebuffer_image-scrolll.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-scrolll.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-scrolll.o -c build/Linux-framebuffer/image-scrolll.c
COMPILE: build/Linux-framebuffer/image-scrolld.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-scrolld.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-scrolld.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-scrolld.d build/Linux-framebuffer/build_Linux-framebuffer_image-scrolld.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-scrolld.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-scrolld.o -c build/Linux-framebuffer/image-scrolld.c
COMPILE: build/Linux-framebuffer/image-right_arrow_g.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-right_arrow_g.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-right_arrow_g.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-right_arrow_g.d build/Linux-framebuffer/build_Linux-framebuffer_image-right_arrow_g.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-right_arrow_g.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-right_arrow_g.o -c build/Linux-framebuffer/image-right_arrow_g.c
COMPILE: build/Linux-framebuffer/image-right_arrow.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-right_arrow.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-right_arrow.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-right_arrow.d build/Linux-framebuffer/build_Linux-framebuffer_image-right_arrow.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-right_arrow.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-right_arrow.o -c build/Linux-framebuffer/image-right_arrow.c
COMPILE: build/Linux-framebuffer/image-reload_g.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-reload_g.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-reload_g.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-reload_g.d build/Linux-framebuffer/build_Linux-framebuffer_image-reload_g.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-reload_g.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-reload_g.o -c build/Linux-framebuffer/image-reload_g.c
COMPILE: build/Linux-framebuffer/image-reload.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-reload.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-reload.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-reload.d build/Linux-framebuffer/build_Linux-framebuffer_image-reload.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-reload.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-reload.o -c build/Linux-framebuffer/image-reload.c
COMPILE: build/Linux-framebuffer/image-progress_image.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-progress_image.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-progress_image.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-progress_image.d build/Linux-framebuffer/build_Linux-framebuffer_image-progress_image.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-progress_image.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-progress_image.o -c build/Linux-framebuffer/image-progress_image.c
COMPILE: build/Linux-framebuffer/image-pointer_image.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-pointer_image.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-pointer_image.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-pointer_image.d build/Linux-framebuffer/build_Linux-framebuffer_image-pointer_image.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-pointer_image.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-pointer_image.o -c build/Linux-framebuffer/image-pointer_image.c
COMPILE: build/Linux-framebuffer/image-osk_image.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-osk_image.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-osk_image.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-osk_image.d build/Linux-framebuffer/build_Linux-framebuffer_image-osk_image.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-osk_image.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-osk_image.o -c build/Linux-framebuffer/image-osk_image.c
COMPILE: build/Linux-framebuffer/image-move_image.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-move_image.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-move_image.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-move_image.d build/Linux-framebuffer/build_Linux-framebuffer_image-move_image.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-move_image.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-move_image.o -c build/Linux-framebuffer/image-move_image.c
COMPILE: build/Linux-framebuffer/image-menu_image.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-menu_image.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-menu_image.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-menu_image.d build/Linux-framebuffer/build_Linux-framebuffer_image-menu_image.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-menu_image.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-menu_image.o -c build/Linux-framebuffer/image-menu_image.c
COMPILE: build/Linux-framebuffer/image-left_arrow_g.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-left_arrow_g.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-left_arrow_g.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-left_arrow_g.d build/Linux-framebuffer/build_Linux-framebuffer_image-left_arrow_g.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-left_arrow_g.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-left_arrow_g.o -c build/Linux-framebuffer/image-left_arrow_g.c
COMPILE: build/Linux-framebuffer/image-left_arrow.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-left_arrow.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-left_arrow.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-left_arrow.d build/Linux-framebuffer/build_Linux-framebuffer_image-left_arrow.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-left_arrow.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-left_arrow.o -c build/Linux-framebuffer/image-left_arrow.c
COMPILE: build/Linux-framebuffer/image-history_image_g.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-history_image_g.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-history_image_g.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-history_image_g.d build/Linux-framebuffer/build_Linux-framebuffer_image-history_image_g.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-history_image_g.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-history_image_g.o -c build/Linux-framebuffer/image-history_image_g.c
COMPILE: build/Linux-framebuffer/image-history_image.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-history_image.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-history_image.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-history_image.d build/Linux-framebuffer/build_Linux-framebuffer_image-history_image.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-history_image.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-history_image.o -c build/Linux-framebuffer/image-history_image.c
COMPILE: build/Linux-framebuffer/image-hand_image.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-hand_image.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-hand_image.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-hand_image.d build/Linux-framebuffer/build_Linux-framebuffer_image-hand_image.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-hand_image.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-hand_image.o -c build/Linux-framebuffer/image-hand_image.c
COMPILE: build/Linux-framebuffer/image-caret_image.c
rm -f build/Linux-framebuffer/deps/build_Linux-framebuffer_image-caret_image.d
rm -f build/Linux-framebuffer/build_Linux-framebuffer_image-caret_image.o
x86_64-unknown-redox-gcc -W -Wall -Wundef -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wuninitialized -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -I. -Iinclude -Ibuild/Linux-framebuffer -Ifrontends -Icontent/handlers -O2 -DWITH_JPEG -UWITH_PDF_EXPORT -ULIBICONV_PLUG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DUTF8PROC_EXPORTS -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DCURL_STATICLIB -DWITH_CURL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_OPENSSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -DWITH_PNG -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include/ -DWITH_BMP -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_GIF -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSSPRITE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSPSL -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -DWITH_NSLOG -DNETSURF_UA_FORMAT_STRING=\""NetSurf/%d.%d (%s)"\" -DNETSURF_HOMEPAGE=\""https://www.redox-os.org/"\" -DNETSURF_LOG_LEVEL=INFO -DNETSURF_BUILTIN_LOG_FILTER=\"level:WARNING\" -DNETSURF_BUILTIN_VERBOSE_FILTER=\"level:VERBOSE\" -Dnsframebuffer '-DNETSURF_FB_RESPATH="${HOME}/.netsurf/:${NETSURFRES}:/share/netsurf/:./frontends/framebuffer/res"' '-DNETSURF_FB_FONTPATH="/ui/fonts/"' '-DNETSURF_FB_FONT_SANS_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_SERIF="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_SERIF_BOLD="Sans/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_MONOSPACE="Mono/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_MONOSPACE_BOLD="Mono/Fira/Bold.ttf"' '-DNETSURF_FB_FONT_CURSIVE="Sans/Fira/Regular.ttf"' '-DNETSURF_FB_FONT_FANTASY="Sans/Fira/Regular.ttf"' -std=c99 -g -Dsmall -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=200809L -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -I/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DFB_USE_FREETYPE -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/freetype2 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include/libpng16 -I/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/include -I/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/include -MMD -MT 'build/Linux-framebuffer/deps/build_Linux-framebuffer_image-caret_image.d build/Linux-framebuffer/build_Linux-framebuffer_image-caret_image.o' -MF build/Linux-framebuffer/deps/build_Linux-framebuffer_image-caret_image.d -o build/Linux-framebuffer/build_Linux-framebuffer_image-caret_image.o -c build/Linux-framebuffer/image-caret_image.c
M.CONFIG: JPEG (libjpeg) enabled (NETSURF_USE_JPEG := YES)
M.CONFIG: PDF export (haru) disabled (NETSURF_USE_HARU_PDF := NO)
M.CONFIG: glibc internal iconv disabled (NETSURF_USE_LIBICONV_PLUG := NO)
M.CONFIG: Javascript (Duktape) disabled (NETSURF_USE_DUKTAPE := NO)
PKG.CNFG: CSS (libcss) enabled
PKG.CNFG: DOM (libdom) enabled
PKG.CNFG: nsutils (libnsutils) enabled
PKG.CNFG: utf8proc (libutf8proc) enabled
M.CONFIG: Curl (libcurl) enabled (NETSURF_USE_CURL := YES)
M.CONFIG: OpenSSL (openssl) enabled (NETSURF_USE_OPENSSL := YES)
M.CONFIG: PNG (libpng) enabled (NETSURF_USE_PNG := YES)
M.CONFIG: BMP (libnsbmp) enabled (NETSURF_USE_BMP := YES)
M.CONFIG: GIF (libnsgif) enabled (NETSURF_USE_GIF := YES)
M.CONFIG: SVG (libsvgtiny) disabled (NETSURF_USE_NSSVG := NO)
M.CONFIG: Sprite (librosprite) auto-enabled (NETSURF_USE_ROSPRITE := AUTO)
M.CONFIG: PSL (libnspsl) auto-enabled (NETSURF_USE_NSPSL := AUTO)
M.CONFIG: LOG (libnslog) auto-enabled (NETSURF_USE_NSLOG := AUTO)
PKG.CNFG: libnsfb (libnsfb) enabled
PKG.CNFG: Check (check) disabled
perl utils/git-testament.pl /home/tyhdefu/redox/cookbook/recipes/netsurf/build/netsurf build/Linux-framebuffer/testament.h
TESTMENT: unchanged
LINK: nsfb
x86_64-unknown-redox-gcc -o nsfb build/Linux-framebuffer/build_Linux-framebuffer_image-caret_image.o build/Linux-framebuffer/build_Linux-framebuffer_image-hand_image.o build/Linux-framebuffer/build_Linux-framebuffer_image-history_image.o build/Linux-framebuffer/build_Linux-framebuffer_image-history_image_g.o build/Linux-framebuffer/build_Linux-framebuffer_image-left_arrow.o build/Linux-framebuffer/build_Linux-framebuffer_image-left_arrow_g.o build/Linux-framebuffer/build_Linux-framebuffer_image-menu_image.o build/Linux-framebuffer/build_Linux-framebuffer_image-move_image.o build/Linux-framebuffer/build_Linux-framebuffer_image-osk_image.o build/Linux-framebuffer/build_Linux-framebuffer_image-pointer_image.o build/Linux-framebuffer/build_Linux-framebuffer_image-progress_image.o build/Linux-framebuffer/build_Linux-framebuffer_image-reload.o build/Linux-framebuffer/build_Linux-framebuffer_image-reload_g.o build/Linux-framebuffer/build_Linux-framebuffer_image-right_arrow.o build/Linux-framebuffer/build_Linux-framebuffer_image-right_arrow_g.o build/Linux-framebuffer/build_Linux-framebuffer_image-scrolld.o build/Linux-framebuffer/build_Linux-framebuffer_image-scrolll.o build/Linux-framebuffer/build_Linux-framebuffer_image-scrollr.o build/Linux-framebuffer/build_Linux-framebuffer_image-scrollu.o build/Linux-framebuffer/build_Linux-framebuffer_image-stop_image.o build/Linux-framebuffer/build_Linux-framebuffer_image-stop_image_g.o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber0.o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber1.o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber2.o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber3.o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber4.o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber5.o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber6.o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber7.o build/Linux-framebuffer/build_Linux-framebuffer_image-throbber8.o build/Linux-framebuffer/content_content.o build/Linux-framebuffer/content_content_factory.o build/Linux-framebuffer/content_dirlist.o build/Linux-framebuffer/content_fetch.o build/Linux-framebuffer/content_fetchers_about.o build/Linux-framebuffer/content_fetchers_curl.o build/Linux-framebuffer/content_fetchers_data.o build/Linux-framebuffer/content_fetchers_file.o build/Linux-framebuffer/content_fetchers_resource.o build/Linux-framebuffer/content_handlers_css_css.o build/Linux-framebuffer/content_handlers_css_dump.o build/Linux-framebuffer/content_handlers_css_hints.o build/Linux-framebuffer/content_handlers_css_internal.o build/Linux-framebuffer/content_handlers_css_select.o build/Linux-framebuffer/content_handlers_css_utils.o build/Linux-framebuffer/content_handlers_image_bmp.o build/Linux-framebuffer/content_handlers_image_gif.o build/Linux-framebuffer/content_handlers_image_ico.o build/Linux-framebuffer/content_handlers_image_image.o build/Linux-framebuffer/content_handlers_image_image_cache.o build/Linux-framebuffer/content_handlers_image_jpeg.o build/Linux-framebuffer/content_handlers_image_nssprite.o build/Linux-framebuffer/content_handlers_image_png.o build/Linux-framebuffer/content_handlers_javascript_fetcher.o build/Linux-framebuffer/content_handlers_javascript_none_none.o build/Linux-framebuffer/content_hlcache.o build/Linux-framebuffer/content_llcache.o build/Linux-framebuffer/content_mimesniff.o build/Linux-framebuffer/content_no_backing_store.o build/Linux-framebuffer/content_urldb.o build/Linux-framebuffer/desktop_browser.o build/Linux-framebuffer/desktop_browser_history.o build/Linux-framebuffer/desktop_cookie_manager.o build/Linux-framebuffer/desktop_download.o build/Linux-framebuffer/desktop_font_haru.o build/Linux-framebuffer/desktop_frames.o build/Linux-framebuffer/desktop_global_history.o build/Linux-framebuffer/desktop_gui_factory.o build/Linux-framebuffer/desktop_hotlist.o build/Linux-framebuffer/desktop_knockout.o build/Linux-framebuffer/desktop_local_history.o build/Linux-framebuffer/desktop_mouse.o build/Linux-framebuffer/desktop_netsurf.o build/Linux-framebuffer/desktop_plot_style.o build/Linux-framebuffer/desktop_print.o build/Linux-framebuffer/desktop_save_complete.o build/Linux-framebuffer/desktop_save_pdf.o build/Linux-framebuffer/desktop_save_text.o build/Linux-framebuffer/desktop_scrollbar.o build/Linux-framebuffer/desktop_search.o build/Linux-framebuffer/desktop_searchweb.o build/Linux-framebuffer/desktop_selection.o build/Linux-framebuffer/desktop_sslcert_viewer.o build/Linux-framebuffer/desktop_system_colour.o build/Linux-framebuffer/desktop_textarea.o build/Linux-framebuffer/desktop_textinput.o build/Linux-framebuffer/desktop_treeview.o build/Linux-framebuffer/desktop_version.o build/Linux-framebuffer/frontends_framebuffer_bitmap.o build/Linux-framebuffer/frontends_framebuffer_clipboard.o build/Linux-framebuffer/frontends_framebuffer_corewindow.o build/Linux-framebuffer/frontends_framebuffer_fbtk_bitmap.o build/Linux-framebuffer/frontends_framebuffer_fbtk_event.o build/Linux-framebuffer/frontends_framebuffer_fbtk_fbtk.o build/Linux-framebuffer/frontends_framebuffer_fbtk_fill.o build/Linux-framebuffer/frontends_framebuffer_fbtk_osk.o build/Linux-framebuffer/frontends_framebuffer_fbtk_scroll.o build/Linux-framebuffer/frontends_framebuffer_fbtk_text.o build/Linux-framebuffer/frontends_framebuffer_fbtk_user.o build/Linux-framebuffer/frontends_framebuffer_fbtk_window.o build/Linux-framebuffer/frontends_framebuffer_fetch.o build/Linux-framebuffer/frontends_framebuffer_findfile.o build/Linux-framebuffer/frontends_framebuffer_font_freetype.o build/Linux-framebuffer/frontends_framebuffer_framebuffer.o build/Linux-framebuffer/frontends_framebuffer_gui.o build/Linux-framebuffer/frontends_framebuffer_local_history.o build/Linux-framebuffer/frontends_framebuffer_schedule.o build/Linux-framebuffer/render_box.o build/Linux-framebuffer/render_box_construct.o build/Linux-framebuffer/render_box_normalise.o build/Linux-framebuffer/render_box_textarea.o build/Linux-framebuffer/render_font.o build/Linux-framebuffer/render_form.o build/Linux-framebuffer/render_html.o build/Linux-framebuffer/render_html_css.o build/Linux-framebuffer/render_html_css_fetcher.o build/Linux-framebuffer/render_html_forms.o build/Linux-framebuffer/render_html_interaction.o build/Linux-framebuffer/render_html_object.o build/Linux-framebuffer/render_html_redraw.o build/Linux-framebuffer/render_html_redraw_border.o build/Linux-framebuffer/render_html_script.o build/Linux-framebuffer/render_imagemap.o build/Linux-framebuffer/render_layout.o build/Linux-framebuffer/render_search.o build/Linux-framebuffer/render_table.o build/Linux-framebuffer/render_textplain.o build/Linux-framebuffer/utils_bloom.o build/Linux-framebuffer/utils_corestrings.o build/Linux-framebuffer/utils_file.o build/Linux-framebuffer/utils_filename.o build/Linux-framebuffer/utils_filepath.o build/Linux-framebuffer/utils_hashtable.o build/Linux-framebuffer/utils_http_challenge.o build/Linux-framebuffer/utils_http_content-disposition.o build/Linux-framebuffer/utils_http_content-type.o build/Linux-framebuffer/utils_http_generics.o build/Linux-framebuffer/utils_http_parameter.o build/Linux-framebuffer/utils_http_primitives.o build/Linux-framebuffer/utils_http_www-authenticate.o build/Linux-framebuffer/utils_idna.o build/Linux-framebuffer/utils_libdom.o build/Linux-framebuffer/utils_log.o build/Linux-framebuffer/utils_messages.o build/Linux-framebuffer/utils_nsoption.o build/Linux-framebuffer/utils_nsurl_nsurl.o build/Linux-framebuffer/utils_nsurl_parse.o build/Linux-framebuffer/utils_punycode.o build/Linux-framebuffer/utils_talloc.o build/Linux-framebuffer/utils_time.o build/Linux-framebuffer/utils_url.o build/Linux-framebuffer/utils_useragent.o build/Linux-framebuffer/utils_utf8.o build/Linux-framebuffer/utils_utils.o -L/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib -L/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib -static -Wl,--allow-multiple-definition -Wl,-Bstatic -lcurl -lnghttp2 -ljpeg -liconv -L/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib -lcss -lparserutils -lwapcaplet -L/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib -ldom -lexpat -lhubbub -lparserutils -L/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib -lnsutils -L/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib -lutf8proc -lz -L/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib -lcurl -L/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib -lssl -lcrypto -L/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib -lpng16 -lz -L/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib -lnsbmp -L/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib -lnsgif -L/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib -lrosprite -L/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib -lnspsl -L/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib -lnslog -lm -Wl,--whole-archive -L/home/tyhdefu/redox/cookbook/recipes/netsurf/build/inst-framebuffer/lib -lnsfb -L/lib -lSDL -lorbital -lpthread -Wl,--no-whole-archive -L/home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib -lfreetype
/home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/bin/../lib/gcc/x86_64-unknown-redox/8.2.0/../../../../x86_64-unknown-redox/bin/ld: /home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib/libSDL.a(SDL_sysloadso.o): in function `SDL_LoadObject':
SDL_sysloadso.c:(.text+0x19): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/bin/../lib/gcc/x86_64-unknown-redox/8.2.0/../../../../x86_64-unknown-redox/bin/ld: /home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib/libcurl.a(libcurl_la-netrc.o): in function `Curl_parsenetrc':
netrc.c:(.text+0x2f3): warning: Using 'getpwuid_r' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/bin/../lib/gcc/x86_64-unknown-redox/8.2.0/../../../../x86_64-unknown-redox/bin/ld: /home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib/libcurl.a(libcurl_la-curl_addrinfo.o): in function `Curl_getaddrinfo_ex':
curl_addrinfo.c:(.text+0x19e): warning: Using 'getaddrinfo' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/bin/../lib/gcc/x86_64-unknown-redox/8.2.0/../../../../x86_64-unknown-redox/bin/ld: /home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib/libcrypto.a(b_sock.o): in function `BIO_gethostbyname':
b_sock.c:(.text+0x221): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/bin/../lib/gcc/x86_64-unknown-redox/8.2.0/../../../../x86_64-unknown-redox/bin/ld: /home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/bin/../lib/gcc/x86_64-unknown-redox/8.2.0/../../../../x86_64-unknown-redox/lib/crt0.o: in function `_start':
(.text+0x8): undefined reference to `relibc_start'
/home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/bin/../lib/gcc/x86_64-unknown-redox/8.2.0/../../../../x86_64-unknown-redox/bin/ld: /home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib/liborbital.a(std-ce435484049837f5.std.f1086d21-cgu.14.rcgu.o): in function `std::io::Read::read_buf':
std.f1086d21-cgu.14:(.text._ZN3std2io4Read8read_buf17h01082fa3b4e1b0ebE+0x51): undefined reference to `__errno'
/home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/bin/../lib/gcc/x86_64-unknown-redox/8.2.0/../../../../x86_64-unknown-redox/bin/ld: /home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib/liborbital.a(std-ce435484049837f5.std.f1086d21-cgu.14.rcgu.o): in function `std::io::Read::read_buf':
std.f1086d21-cgu.14:(.text._ZN3std2io4Read8read_buf17h138b599cf27cee30E+0x4f): undefined reference to `__errno'
/home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/bin/../lib/gcc/x86_64-unknown-redox/8.2.0/../../../../x86_64-unknown-redox/bin/ld: /home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib/liborbital.a(std-ce435484049837f5.std.f1086d21-cgu.14.rcgu.o): in function `<std::process::ChildStdin as std::io::Write>::write':
std.f1086d21-cgu.14:(.text._ZN59_$LT$std..process..ChildStdin$u20$as$u20$std..io..Write$GT$5write17ha5d491b3c7db8d46E+0x39): undefined reference to `__errno'
/home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/bin/../lib/gcc/x86_64-unknown-redox/8.2.0/../../../../x86_64-unknown-redox/bin/ld: /home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib/liborbital.a(std-ce435484049837f5.std.f1086d21-cgu.14.rcgu.o): in function `<std::process::ChildStdin as std::io::Write>::write_vectored':
std.f1086d21-cgu.14:(.text._ZN59_$LT$std..process..ChildStdin$u20$as$u20$std..io..Write$GT$14write_vectored17hf16e8666a5dde24aE+0x33): undefined reference to `__errno'
/home/tyhdefu/redox/prefix/x86_64-unknown-redox/relibc-install/bin/../lib/gcc/x86_64-unknown-redox/8.2.0/../../../../x86_64-unknown-redox/bin/ld: /home/tyhdefu/redox/cookbook/recipes/netsurf/sysroot/lib/liborbital.a(std-ce435484049837f5.std.f1086d21-cgu.14.rcgu.o): in function `<&std::process::ChildStdin as std::io::Write>::write':
std.f1086d21-cgu.14:(.text._ZN63_$LT$$RF$std..process..ChildStdin$u20$as$u20$std..io..Write$GT$5write17hd458e0ee
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment