From 415aa0cc539a67fac1a8e139fb9953f8a43c6e4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Gro=C3=9F?= Date: Mon, 15 May 2023 14:13:57 +0200 Subject: [PATCH] Update node-builder/Dockerfile_Ubuntu_18.04_node and node-builder/README.md --- tools/node-builder/Dockerfile_Ubuntu_18.04_node | 10 ++++------ tools/node-builder/README.md | 4 ++-- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/tools/node-builder/Dockerfile_Ubuntu_18.04_node b/tools/node-builder/Dockerfile_Ubuntu_18.04_node index 262dc72dae..e3ab1cd78b 100644 --- a/tools/node-builder/Dockerfile_Ubuntu_18.04_node +++ b/tools/node-builder/Dockerfile_Ubuntu_18.04_node @@ -1,12 +1,11 @@ # Copyright 2023 Overte e.V. -# SPDX-License-Identifier: MIT +# SPDX-License-Identifier: Apache-2.0 # Docker file for building Overte Node packages for Ubuntu 18.04 # Some steps for actually using this: -# - Check which commit you are building https://invent.kde.org/qt/qt/qt5/-/tree/kde/5.15 # - Adjust this file to include the number of threads you want to use (-j10), and the Node version. -# Keep in mind that building Qt requires a lot of memory. You should have over 1.2GiB of system memory available per thread. +# Keep in mind that building Node requires a lot of memory. You should have over 1.2GiB of system memory available per thread. # - Run the build process with something like `PROGRESS_NO_TRUNC=1 DOCKER_BUILDKIT=1 BUILDKIT_STEP_LOG_MAX_SIZE=-1 docker build --progress plain -t overte-node:node-18.14.2 -f Dockerfile_Ubuntu_18.04_node .` # Buildkit is used to cache intermittent steps in case you need to modify something afterwards. # - Once the build has completed, create a container from the image and export the created Node package. @@ -41,12 +40,11 @@ RUN git clone --recursive https://github.com/nodejs/node.git -b v18.14.2 --singl # Install node system build dependencies RUN apt-get -y build-dep nodejs -# Install build dependencies -#RUN apt-get -y install python gperf flex bison pkg-config mesa-utils libgl1-mesa-dev make g++ libdbus-glib-1-dev libnss3-dev nodejs libxkbfile-dev libx11-dev - RUN mkdir node-install WORKDIR node +# --gdb currently doesn't build on aarch64 +# Ubuntu 18.04 has a too old compiler to build on aarch64 #RUN ./configure --gdb --shared --prefix=../node-install/ RUN ./configure --gdb --shared --debug --debug-lib --v8-with-dchecks --v8-enable-object-print --prefix=../node-install/ diff --git a/tools/node-builder/README.md b/tools/node-builder/README.md index b34624c190..a8cb97e285 100644 --- a/tools/node-builder/README.md +++ b/tools/node-builder/README.md @@ -1,5 +1,5 @@ # Copyright 2023 Overte e.V. -# SPDX-License-Identifier: MIT +# SPDX-License-Identifier: Apache-2.0 # General This document describes the process to build Node 18.14.2 for usage as scripting engine.. @@ -94,7 +94,7 @@ make -j4 install ``` #### Uploading -1. Tar and xz qt5-install to create the package. Replace `ubuntu-18.04` with the relevant system and `amd64` with the relevant architecture. +1. Tar and xz node-install to create the package. Replace `ubuntu-18.04` with the relevant system and `amd64` with the relevant architecture. ```bash tar -Jcvf node-install-18.14.2-ubuntu-18.04-amd64-release.tar.xz node-install ```