Fix encoding and build script

This commit is contained in:
ExPikaPaka
2026-06-04 12:13:10 +02:00
parent 3be63d4369
commit 1d7da51991
2 changed files with 4 additions and 3 deletions

View File

@@ -181,8 +181,9 @@ function pack_deps() {
function build_slicer() {
echo "Generating config sources from proto..."
pip3 install grpcio-tools -q
python3 tools/run_codegen.py || { echo "ERROR: config codegen failed"; exit 1; }
python3 -m venv /tmp/codegen_venv
/tmp/codegen_venv/bin/pip install grpcio-tools -q
/tmp/codegen_venv/bin/python tools/run_codegen.py || { echo "ERROR: config codegen failed"; exit 1; }
# iterate over two architectures: x86_64 and arm64
for _ARCH in x86_64 arm64; do

View File

@@ -1,4 +1,4 @@
#include "PrintConfig.hpp"
#include "PrintConfig.hpp"
#include "PrintConfigConstants.hpp"
#include "ClipperUtils.hpp"
#include "Config.hpp"