Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions BuildLinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ then
echo "done"
echo "Building Orca-Flashforge ..."
cmake --build build --target Orca-Flashforge
echo "Building Orca-Flashforge_profile_validator .."
cmake --build build --target Orca-Flashforge_profile_validator
echo "Building OrcaSlicer_profile_validator .."
cmake --build build --target OrcaSlicer_profile_validator
./run_gettext.sh
echo "done"
fi
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,4 @@ RUN [[ "$UID" != "0" ]] \

# Using an entrypoint instead of CMD because the binary
# accepts several command line arguments.
ENTRYPOINT ["/OrcaSlicer/build/package/bin/orca-slicer"]
ENTRYPOINT ["/OrcaSlicer/build/package/bin/orca-flashforge"]
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ Orca-Flashforge is an open source slicer for FDM printers.
- Tools needed: Xcode, Cmake, git, gettext
- run `build_release_macos.sh`

- Linux (checked on Ubuntu Desktop 22.04 6.8.0-57-generic x86_64)
- Tools needed: [docker](https://docs.docker.com/engine/install/ubuntu/)
- run `sh ./DockerBuild.sh`
- after successful build run it from docker via `sh DockerRun.sh` or export AppImage from `orcaslicer` container to your local file system

# Note:
If you're running Klipper, it's recommended to add the following configuration to your `printer.cfg` file.
```
Expand Down
2 changes: 1 addition & 1 deletion deps/MPFR/MPFR.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ else ()
endif ()

ExternalProject_Add(dep_MPFR
URL https://www.mpfr.org/mpfr-current/mpfr-4.2.1.tar.bz2
URL https://www.mpfr.org/mpfr-4.2.1/mpfr-4.2.1.tar.bz2
URL_HASH SHA256=b9df93635b20e4089c29623b19420c4ac848a1b29df1cfd59f26cab0d2666aa0
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/MPFR
BUILD_IN_SOURCE ON
Expand Down