2017-09-27 22:21:19 +01:00
|
|
|
From 314bcebfcd1759981ce12255be29d8ae68cd400b Mon Sep 17 00:00:00 2001
|
2016-08-13 01:04:10 +01:00
|
|
|
From: Nikolay Amiantov <ab@fmap.me>
|
2016-11-23 14:54:59 +00:00
|
|
|
Date: Wed, 23 Nov 2016 00:40:48 +0300
|
2016-08-13 01:04:10 +01:00
|
|
|
Subject: [PATCH] Build and use one version of preprocessor library
|
|
|
|
|
|
|
|
---
|
2017-09-27 22:21:19 +01:00
|
|
|
octoprint_m33fio/__init__.py | 73 ++----------------------------------------
|
|
|
|
shared library source/Makefile | 62 +++--------------------------------
|
|
|
|
2 files changed, 6 insertions(+), 129 deletions(-)
|
2016-08-13 01:04:10 +01:00
|
|
|
|
|
|
|
diff --git a/octoprint_m33fio/__init__.py b/octoprint_m33fio/__init__.py
|
2017-09-27 22:21:19 +01:00
|
|
|
index 054870a..4d5ecc1 100755
|
2016-08-13 01:04:10 +01:00
|
|
|
--- a/octoprint_m33fio/__init__.py
|
|
|
|
+++ b/octoprint_m33fio/__init__.py
|
2017-09-27 22:21:19 +01:00
|
|
|
@@ -1189,78 +1189,9 @@ class M33FioPlugin(
|
2016-08-13 01:04:10 +01:00
|
|
|
# Check if using shared library or checking if it is usable
|
|
|
|
if self._settings.get_boolean(["UseSharedLibrary"]) or isUsable :
|
|
|
|
|
|
|
|
- # Check if running on Linux
|
|
|
|
- if platform.uname()[0].startswith("Linux") :
|
|
|
|
-
|
|
|
|
- # Check if running on a Raspberry Pi 1
|
|
|
|
- if platform.uname()[4].startswith("armv6l") and self.getCpuHardware() == "BCM2708" :
|
|
|
|
-
|
|
|
|
- # Set shared library
|
2017-01-29 17:03:38 +00:00
|
|
|
- self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace("\\", "/") + "/static/libraries/preprocessor_arm1176jzf-s.so")
|
2016-08-13 01:04:10 +01:00
|
|
|
-
|
|
|
|
- # Otherwise check if running on a Raspberry Pi 2 or Raspberry Pi 3
|
|
|
|
- elif platform.uname()[4].startswith("armv7l") and self.getCpuHardware() == "BCM2709" :
|
|
|
|
-
|
|
|
|
- # Set shared library
|
2017-01-29 17:03:38 +00:00
|
|
|
- self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace("\\", "/") + "/static/libraries/preprocessor_arm_cortex-a7.so")
|
2016-08-13 01:04:10 +01:00
|
|
|
-
|
|
|
|
- # Otherwise check if running on an ARM7 device
|
|
|
|
- elif platform.uname()[4].startswith("armv7") :
|
|
|
|
-
|
|
|
|
- # Set shared library
|
2017-01-29 17:03:38 +00:00
|
|
|
- self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace("\\", "/") + "/static/libraries/preprocessor_arm7.so")
|
2016-08-13 01:04:10 +01:00
|
|
|
-
|
|
|
|
- # Otherwise check if using an i386 or x86-64 device
|
|
|
|
- elif platform.uname()[4].endswith("86") or platform.uname()[4].endswith("64") :
|
|
|
|
-
|
|
|
|
- # Check if Python is running as 32-bit
|
|
|
|
- if platform.architecture()[0].startswith("32") :
|
|
|
|
-
|
|
|
|
- # Set shared library
|
2017-01-29 17:03:38 +00:00
|
|
|
- self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace("\\", "/") + "/static/libraries/preprocessor_i386.so")
|
2016-08-13 01:04:10 +01:00
|
|
|
-
|
|
|
|
- # Otherwise check if Python is running as 64-bit
|
|
|
|
- elif platform.architecture()[0].startswith("64") :
|
|
|
|
-
|
|
|
|
- # Set shared library
|
2017-01-29 17:03:38 +00:00
|
|
|
- self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace("\\", "/") + "/static/libraries/preprocessor_x86-64.so")
|
2016-08-13 01:04:10 +01:00
|
|
|
-
|
|
|
|
- # Otherwise check if running on Windows and using an i386 or x86-64 device
|
|
|
|
- elif platform.uname()[0].startswith("Windows") and (platform.uname()[4].endswith("86") or platform.uname()[4].endswith("64")) :
|
2017-09-27 22:21:19 +01:00
|
|
|
+ # Set shared library
|
|
|
|
+ self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace('\\', '/') + "/static/libraries/libpreprocessor.so")
|
|
|
|
|
2016-08-13 01:04:10 +01:00
|
|
|
- # Check if Python is running as 32-bit
|
|
|
|
- if platform.architecture()[0].startswith("32") :
|
|
|
|
-
|
|
|
|
- # Set shared library
|
2017-01-29 17:03:38 +00:00
|
|
|
- self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace("\\", "/") + "/static/libraries/preprocessor_i386.dll")
|
2016-08-13 01:04:10 +01:00
|
|
|
-
|
|
|
|
- # Otherwise check if Python is running as 64-bit
|
|
|
|
- elif platform.architecture()[0].startswith("64") :
|
|
|
|
-
|
|
|
|
- # Set shared library
|
2017-01-29 17:03:38 +00:00
|
|
|
- self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace("\\", "/") + "/static/libraries/preprocessor_x86-64.dll")
|
2016-08-13 01:04:10 +01:00
|
|
|
-
|
2017-01-29 17:03:38 +00:00
|
|
|
- # Otherwise check if running on macOS and using an i386 or x86-64 device
|
2016-08-13 01:04:10 +01:00
|
|
|
- elif platform.uname()[0].startswith("Darwin") and (platform.uname()[4].endswith("86") or platform.uname()[4].endswith("64")) :
|
|
|
|
-
|
|
|
|
- # Check if Python is running as 32-bit
|
|
|
|
- if platform.architecture()[0].startswith("32") :
|
|
|
|
-
|
|
|
|
- # Set shared library
|
2017-01-29 17:03:38 +00:00
|
|
|
- self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace("\\", "/") + "/static/libraries/preprocessor_i386.dylib")
|
2016-08-13 01:04:10 +01:00
|
|
|
-
|
|
|
|
- # Otherwise check if Python is running as 64-bit
|
|
|
|
- elif platform.architecture()[0].startswith("64") :
|
|
|
|
-
|
|
|
|
- # Set shared library
|
2017-01-29 17:03:38 +00:00
|
|
|
- self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace("\\", "/") + "/static/libraries/preprocessor_x86-64.dylib")
|
2017-09-27 22:21:19 +01:00
|
|
|
-
|
|
|
|
- # Otherwise check if running FreeBSD
|
|
|
|
- elif platform.uname()[0].startswith("FreeBSD") :
|
|
|
|
-
|
|
|
|
- # TODO: Compile FreeBSD shared library pre-processors
|
|
|
|
- pass
|
|
|
|
-
|
2016-08-13 01:04:10 +01:00
|
|
|
# Check if shared library was set
|
|
|
|
if self.sharedLibrary :
|
2017-09-27 22:21:19 +01:00
|
|
|
|
2016-08-13 01:04:10 +01:00
|
|
|
diff --git a/shared library source/Makefile b/shared library source/Makefile
|
2017-01-29 17:03:38 +00:00
|
|
|
index 792b4f4..4c74f5c 100755
|
2016-08-13 01:04:10 +01:00
|
|
|
--- a/shared library source/Makefile
|
|
|
|
+++ b/shared library source/Makefile
|
2016-11-23 14:54:59 +00:00
|
|
|
@@ -1,68 +1,14 @@
|
2017-01-29 17:03:38 +00:00
|
|
|
-# Target platform options: LINUX32, LINUX64, WINDOWS32, WINDOWS64, PI, PI2, ARM7, MACOS32, MACOS64
|
2016-08-13 01:04:10 +01:00
|
|
|
-LIBRARY_NAME = preprocessor
|
2016-11-23 14:54:59 +00:00
|
|
|
-TARGET_PLATFORM = LINUX64
|
2016-08-13 01:04:10 +01:00
|
|
|
+LIBRARY_NAME = libpreprocessor
|
|
|
|
VER = .1
|
|
|
|
|
|
|
|
-ifeq ($(TARGET_PLATFORM), LINUX32)
|
|
|
|
- PROG = $(LIBRARY_NAME)_i386.so
|
|
|
|
- CC = g++
|
|
|
|
- CFLAGS = -fPIC -m32 -static-libgcc -O3 -Wl,-soname,$(PROG)$(VER) -static-libstdc++
|
|
|
|
-endif
|
|
|
|
-
|
|
|
|
-ifeq ($(TARGET_PLATFORM), LINUX64)
|
|
|
|
- PROG = $(LIBRARY_NAME)_x86-64.so
|
|
|
|
- CC = g++
|
|
|
|
- CFLAGS = -fPIC -m64 -static-libgcc -O3 -Wl,-soname,$(PROG)$(VER) -static-libstdc++
|
|
|
|
-endif
|
|
|
|
-
|
|
|
|
-ifeq ($(TARGET_PLATFORM), WINDOWS32)
|
|
|
|
- PROG = $(LIBRARY_NAME)_i386.dll
|
|
|
|
- CC = i686-w64-mingw32-g++
|
|
|
|
- CFLAGS = -static-libgcc -O3 -Wl,-soname,$(PROG)$(VER) -static-libstdc++
|
|
|
|
-endif
|
|
|
|
-
|
|
|
|
-ifeq ($(TARGET_PLATFORM), WINDOWS64)
|
|
|
|
- PROG = $(LIBRARY_NAME)_x86-64.dll
|
|
|
|
- CC = x86_64-w64-mingw32-g++
|
|
|
|
- CFLAGS = -static-libgcc -O3 -Wl,-soname,$(PROG)$(VER) -static-libstdc++
|
|
|
|
-endif
|
|
|
|
-
|
|
|
|
-ifeq ($(TARGET_PLATFORM), PI)
|
|
|
|
- PROG = $(LIBRARY_NAME)_arm1176jzf-s.so
|
2016-11-23 14:54:59 +00:00
|
|
|
- CC = /opt/arm-toolchain/arm-bcm2708/arm-rpi-4.9.3-linux-gnueabihf/bin/arm-linux-gnueabihf-g++
|
2016-08-13 01:04:10 +01:00
|
|
|
- CFLAGS = -fPIC -mcpu=arm1176jzf-s -mfpu=vfp -mfloat-abi=hard -static-libgcc -O3 -Wl,-soname,$(PROG)$(VER) -static-libstdc++
|
|
|
|
-endif
|
|
|
|
-
|
|
|
|
-ifeq ($(TARGET_PLATFORM), PI2)
|
|
|
|
- PROG = $(LIBRARY_NAME)_arm_cortex-a7.so
|
2016-11-23 14:54:59 +00:00
|
|
|
- CC = /opt/arm-toolchain/arm-bcm2708/arm-rpi-4.9.3-linux-gnueabihf/bin/arm-linux-gnueabihf-g++
|
2016-08-13 01:04:10 +01:00
|
|
|
- CFLAGS = -fPIC -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard -static-libgcc -O3 -Wl,-soname,$(PROG)$(VER) -static-libstdc++
|
|
|
|
-endif
|
|
|
|
-
|
|
|
|
-ifeq ($(TARGET_PLATFORM), ARM7)
|
|
|
|
- PROG = $(LIBRARY_NAME)_arm7.so
|
2016-11-23 14:54:59 +00:00
|
|
|
- CC = /opt/arm-toolchain/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin/arm-linux-gnueabihf-g++
|
2016-08-13 01:04:10 +01:00
|
|
|
- CFLAGS = -fPIC -mcpu=generic-armv7-a -mfpu=vfp -mfloat-abi=hard -static-libgcc -O3 -Wl,-soname,$(PROG)$(VER) -static-libstdc++
|
|
|
|
-endif
|
|
|
|
-
|
2017-01-29 17:03:38 +00:00
|
|
|
-ifeq ($(TARGET_PLATFORM), MACOS32)
|
2016-08-13 01:04:10 +01:00
|
|
|
- PROG = $(LIBRARY_NAME)_i386.dylib
|
|
|
|
- CC = clang++
|
|
|
|
- CFLAGS = -fPIC -m32 -stdlib=libc++ -O3 -Wl,-install_name,$(PROG)$(VER)
|
|
|
|
-
|
|
|
|
-endif
|
|
|
|
-
|
2017-01-29 17:03:38 +00:00
|
|
|
-ifeq ($(TARGET_PLATFORM), MACOS64)
|
2016-08-13 01:04:10 +01:00
|
|
|
- PROG = $(LIBRARY_NAME)_x86-64.dylib
|
|
|
|
- CC = clang++
|
|
|
|
- CFLAGS = -fPIC -m64 -stdlib=libc++ -O3 -Wl,-install_name,$(PROG)$(VER)
|
|
|
|
-endif
|
|
|
|
+PROG = $(LIBRARY_NAME).so
|
|
|
|
+CFLAGS = -fPIC -O3 -Wl,-soname,$(PROG)$(VER)
|
|
|
|
|
|
|
|
SRCS = preprocessor.cpp gcode.cpp vector.cpp
|
|
|
|
CFLAGS += -Wall -std=c++11 -fvisibility=hidden -shared
|
2016-11-23 14:54:59 +00:00
|
|
|
|
|
|
|
all:
|
|
|
|
- $(CC) $(CFLAGS) -o ../octoprint_m33fio/static/libraries/$(PROG) $(SRCS)
|
|
|
|
+ $(CXX) $(CFLAGS) -o ../octoprint_m33fio/static/libraries/$(PROG) $(SRCS)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f ../octoprint_m33fio/static/libraries/$(PROG)
|
2016-08-13 01:04:10 +01:00
|
|
|
--
|
2017-09-27 22:21:19 +01:00
|
|
|
2.14.1
|
2016-08-13 01:04:10 +01:00
|
|
|
|