Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doesn't build on Zero 2 Pi with Debian Bullseye #5

Open
CharlesMod opened this issue Nov 17, 2022 · 5 comments
Open

Doesn't build on Zero 2 Pi with Debian Bullseye #5

CharlesMod opened this issue Nov 17, 2022 · 5 comments

Comments

@CharlesMod
Copy link

CharlesMod commented Nov 17, 2022

The install was attempted on what was essentially a fresh install of Debian 11 Bullseye on an OrangePi Zero 2, after a restart and updating with apt update and apt upgrade.

Followed the instructions written on the landing page, ended up with a failed build, log below:

orangepi@JSI1:~/OPI.GPIO$ sudo python3 setup.py install
/usr/lib/python3.9/distutils/dist.py:274: UserWarning: Unknown distribution option: 'long_description_content_type'
  warnings.warn(msg)
running install
running build
running build_py
creating build
creating build/lib.linux-aarch64-3.9
creating build/lib.linux-aarch64-3.9/OPi
copying OPi/__init__.py -> build/lib.linux-aarch64-3.9/OPi
running build_ext
building 'OPi.GPIO' extension
creating build/temp.linux-aarch64-3.9
creating build/temp.linux-aarch64-3.9/source
aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/boards.c -o build/temp.linux-aarch64-3.9/source/boards.o
aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/c_gpio.c -o build/temp.linux-aarch64-3.9/source/c_gpio.o
source/c_gpio.c: In function ‘readl’:
source/c_gpio.c:39:63: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘volatile uint32_t *’ {aka ‘volatile unsigned int *’} [-Wformat=]
   39 | printf("mmap_base = 0x%x\t mmap_seek = 0x%x\t gpio_map = 0x%x\t total = 0x%x\n",mmap_base,mmap_seek,gpio_map,(gpio_map + mmap_seek));
      |                                                            ~^                                       ~~~~~~~~
      |                                                             |                                       |
      |                                                             unsigned int                            volatile uint32_t * {aka volatile unsigned int *}
      |                                                            %ls
source/c_gpio.c:39:78: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘volatile uint32_t *’ {aka ‘volatile unsigned int *’} [-Wformat=]
   39 | se = 0x%x\t mmap_seek = 0x%x\t gpio_map = 0x%x\t total = 0x%x\n",mmap_base,mmap_seek,gpio_map,(gpio_map + mmap_seek));
      |                                                            ~^                                 ~~~~~~~~~~~~~~~~~~~~~~
      |                                                             |                                           |
      |                                                             unsigned int                                volatile uint32_t * {aka volatile unsigned int *}
      |                                                            %ls
source/c_gpio.c: In function ‘setup’:
source/c_gpio.c:64:6: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
   64 |  if ((uint32_t)gpio_mem % PAGE_SIZE)
      |      ^
source/c_gpio.c:65:28: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
   65 |   gpio_mem += PAGE_SIZE - ((uint32_t)gpio_mem % PAGE_SIZE);
      |                            ^
source/c_gpio.c:70:25: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘uint8_t *’ {aka ‘unsigned char *’} [-Wformat=]
   70 |   printf("gpio_mem = 0x%x\t gpio_map = 0x%x\n",gpio_mem,gpio_map);
      |                        ~^                      ~~~~~~~~
      |                         |                      |
      |                         unsigned int           uint8_t * {aka unsigned char *}
      |                        %hhn
source/c_gpio.c:70:43: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘volatile uint32_t *’ {aka ‘volatile unsigned int *’} [-Wformat=]
   70 |   printf("gpio_mem = 0x%x\t gpio_map = 0x%x\n",gpio_mem,gpio_map);
      |                                          ~^             ~~~~~~~~
      |                                           |             |
      |                                           unsigned int  volatile uint32_t * {aka volatile unsigned int *}
      |                                          %ls
source/c_gpio.c:72:6: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
   72 |  if ((uint32_t)gpio_map < 0)
      |      ^
aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/common.c -o build/temp.linux-aarch64-3.9/source/common.o
aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/constants.c -o build/temp.linux-aarch64-3.9/source/constants.o
aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/event_gpio.c -o build/temp.linux-aarch64-3.9/source/event_gpio.o
source/event_gpio.c: In function ‘event_cleanup’:
source/event_gpio.c:444:15: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare]
  444 |     if ((gpio == -666) || (gpio_list->gpio == gpio))
      |               ^~
aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/py_gpio.c -o build/temp.linux-aarch64-3.9/source/py_gpio.o
source/py_gpio.c: In function ‘py_setup_channel’:
source/py_gpio.c:184:13: warning: unused variable ‘fn’ [-Wunused-variable]
  184 |   int func, fn;
      |             ^~
source/py_gpio.c:184:7: warning: variable ‘func’ set but not used [-Wunused-but-set-variable]
  184 |   int func, fn;
      |       ^~~~
source/py_gpio.c: In function ‘py_gpio_function_string’:
source/py_gpio.c:357:7: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
  357 |   str = FUNCTIONS[fn];
      |       ^
source/py_gpio.c: In function ‘PyInit_GPIO’:
source/py_gpio.c:733:3: warning: ‘PyEval_ThreadsInitialized’ is deprecated [-Wdeprecated-declarations]
  733 |   if (!PyEval_ThreadsInitialized())
      |   ^~
In file included from /usr/include/python3.9/Python.h:145,
                 from source/py_gpio.c:23:
/usr/include/python3.9/ceval.h:129:36: note: declared here
  129 | Py_DEPRECATED(3.9) PyAPI_FUNC(int) PyEval_ThreadsInitialized(void);
      |                                    ^~~~~~~~~~~~~~~~~~~~~~~~~
source/py_gpio.c:734:5: warning: ‘PyEval_InitThreads’ is deprecated [-Wdeprecated-declarations]
  734 |     PyEval_InitThreads();
      |     ^~~~~~~~~~~~~~~~~~
In file included from /usr/include/python3.9/Python.h:145,
                 from source/py_gpio.c:23:
/usr/include/python3.9/ceval.h:130:37: note: declared here
  130 | Py_DEPRECATED(3.9) PyAPI_FUNC(void) PyEval_InitThreads(void);
      |                                     ^~~~~~~~~~~~~~~~~~
aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/py_pwm.c -o build/temp.linux-aarch64-3.9/source/py_pwm.o
aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/soft_pwm.c -o build/temp.linux-aarch64-3.9/source/soft_pwm.o
aarch64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-z,relro -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-aarch64-3.9/source/boards.o build/temp.linux-aarch64-3.9/source/c_gpio.o build/temp.linux-aarch64-3.9/source/common.o build/temp.linux-aarch64-3.9/source/constants.o build/temp.linux-aarch64-3.9/source/event_gpio.o build/temp.linux-aarch64-3.9/source/py_gpio.o build/temp.linux-aarch64-3.9/source/py_pwm.o build/temp.linux-aarch64-3.9/source/soft_pwm.o -o build/lib.linux-aarch64-3.9/OPi/GPIO.cpython-39-aarch64-linux-gnu.so
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/common.h:48: multiple definition of `gpio_mode'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:48: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/common.h:49: multiple definition of `pin_to_gpio'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:49: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/common.h:52: multiple definition of `setup_error'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:52: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/common.h:53: multiple definition of `module_setup'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:53: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/common.h:51: multiple definition of `gpio_direction'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:51: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/common.h:47: multiple definition of `board_type'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:47: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/boards.h:32: multiple definition of `FUNCTIONS'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:32: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/boards.h:30: multiple definition of `pin_to_gpio_prime'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:30: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/boards.h:29: multiple definition of `pin_to_gpio_pc2'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:29: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/boards.h:28: multiple definition of `pin_to_gpio_pc'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:28: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/boards.h:27: multiple definition of `pin_to_gpio_zero2'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:27: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/boards.h:26: multiple definition of `pin_to_gpio_zero'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:26: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/boards.h:25: multiple definition of `pin_to_gpio_lite2'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:25: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/boards.h:24: multiple definition of `pin_to_gpio_pi3'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:24: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/home/orangepi/OPI.GPIO/source/boards.h:23: multiple definition of `pin_to_gpio_h616'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:23: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/common.h:53: multiple definition of `module_setup'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:53: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/common.h:52: multiple definition of `setup_error'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:52: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/common.h:51: multiple definition of `gpio_direction'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:51: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/common.h:49: multiple definition of `pin_to_gpio'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:49: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/common.h:48: multiple definition of `gpio_mode'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:48: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/common.h:47: multiple definition of `board_type'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:47: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/event_gpio.o:/home/orangepi/OPI.GPIO/source/common.h:53: multiple definition of `module_setup'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:53: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/event_gpio.o:/home/orangepi/OPI.GPIO/source/common.h:52: multiple definition of `setup_error'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:52: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/event_gpio.o:/home/orangepi/OPI.GPIO/source/common.h:51: multiple definition of `gpio_direction'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:51: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/event_gpio.o:/home/orangepi/OPI.GPIO/source/common.h:49: multiple definition of `pin_to_gpio'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:49: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/event_gpio.o:/home/orangepi/OPI.GPIO/source/common.h:48: multiple definition of `gpio_mode'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:48: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/event_gpio.o:/home/orangepi/OPI.GPIO/source/common.h:47: multiple definition of `board_type'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:47: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/common.h:48: multiple definition of `gpio_mode'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:48: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/common.h:52: multiple definition of `setup_error'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:52: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/common.h:47: multiple definition of `board_type'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:47: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/common.h:49: multiple definition of `pin_to_gpio'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:49: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/boards.h:29: multiple definition of `pin_to_gpio_pc2'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:29: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/boards.h:25: multiple definition of `pin_to_gpio_lite2'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:25: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/boards.h:23: multiple definition of `pin_to_gpio_h616'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:23: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/boards.h:27: multiple definition of `pin_to_gpio_zero2'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:27: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/boards.h:28: multiple definition of `pin_to_gpio_pc'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:28: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/boards.h:24: multiple definition of `pin_to_gpio_pi3'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:24: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/boards.h:26: multiple definition of `pin_to_gpio_zero'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:26: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/boards.h:30: multiple definition of `pin_to_gpio_prime'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:30: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/common.h:51: multiple definition of `gpio_direction'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:51: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/common.h:53: multiple definition of `module_setup'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:53: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/boards.h:32: multiple definition of `FUNCTIONS'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/boards.h:32: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:50: multiple definition of `bpi3'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:50: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:49: multiple definition of `blite2'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:49: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:48: multiple definition of `bh616'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:48: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:47: multiple definition of `bprime'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:47: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:46: multiple definition of `bpc2'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:46: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:45: multiple definition of `bpc'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:45: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:44: multiple definition of `bzeroplus3'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:44: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:43: multiple definition of `bzeroh5'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:43: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:42: multiple definition of `bzeroh2'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:42: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:41: multiple definition of `bunknown'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:41: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:40: multiple definition of `version'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:40: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:39: multiple definition of `soc'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:39: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:38: multiple definition of `bcm'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:38: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:37: multiple definition of `board'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:37: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:36: multiple definition of `unknown'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:36: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:35: multiple definition of `both_edge'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:35: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:34: multiple definition of `falling_edge'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:34: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:33: multiple definition of `rising_edge'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:33: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:32: multiple definition of `pud_down'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:32: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:31: multiple definition of `pud_up'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:31: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:30: multiple definition of `pud_off'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:30: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:29: multiple definition of `output'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:29: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:28: multiple definition of `input'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:28: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:27: multiple definition of `low'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:27: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/constants.h:26: multiple definition of `high'; build/temp.linux-aarch64-3.9/source/constants.o:/home/orangepi/OPI.GPIO/source/constants.h:26: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/home/orangepi/OPI.GPIO/source/common.h:51: multiple definition of `gpio_direction'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:51: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/home/orangepi/OPI.GPIO/source/py_pwm.h:23: multiple definition of `PWMType'; build/temp.linux-aarch64-3.9/source/py_gpio.o:/home/orangepi/OPI.GPIO/source/py_pwm.h:23: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/home/orangepi/OPI.GPIO/source/common.h:53: multiple definition of `module_setup'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:53: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/home/orangepi/OPI.GPIO/source/common.h:52: multiple definition of `setup_error'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:52: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/home/orangepi/OPI.GPIO/source/common.h:49: multiple definition of `pin_to_gpio'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:49: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/home/orangepi/OPI.GPIO/source/common.h:48: multiple definition of `gpio_mode'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:48: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/home/orangepi/OPI.GPIO/source/common.h:47: multiple definition of `board_type'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:47: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/home/orangepi/OPI.GPIO/source/soft_pwm.c:29: multiple definition of `threads'; build/temp.linux-aarch64-3.9/source/event_gpio.o:/home/orangepi/OPI.GPIO/source/event_gpio.c:58: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/home/orangepi/OPI.GPIO/source/common.h:53: multiple definition of `module_setup'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:53: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/home/orangepi/OPI.GPIO/source/common.h:52: multiple definition of `setup_error'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:52: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/home/orangepi/OPI.GPIO/source/common.h:51: multiple definition of `gpio_direction'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:51: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/home/orangepi/OPI.GPIO/source/common.h:49: multiple definition of `pin_to_gpio'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:49: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/home/orangepi/OPI.GPIO/source/common.h:48: multiple definition of `gpio_mode'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:48: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/home/orangepi/OPI.GPIO/source/common.h:47: multiple definition of `board_type'; build/temp.linux-aarch64-3.9/source/boards.o:/home/orangepi/OPI.GPIO/source/common.h:47: first defined here
collect2: error: ld returned 1 exit status
error: command '/usr/bin/aarch64-linux-gnu-gcc' failed with exit code 1

@CharlesMod
Copy link
Author

Using this clone link instead of eutim's link works: https://github.com/NadavK/OPI.GPIO

seems the eutim clone link doesn't take the latest merge for python3?

@Taxom
Copy link

Taxom commented Dec 11, 2022

I have same one

sudo python3 setup.py install /usr/lib/python3.9/distutils/dist.py:274: UserWarning: Unknown distribution option: 'long_description_content_type' warnings.warn(msg) running install running build running build_py running build_ext building 'OPi.GPIO' extension aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/boards.c -o build/temp.linux-aarch64-3.9/source/boards.o aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/c_gpio.c -o build/temp.linux-aarch64-3.9/source/c_gpio.o source/c_gpio.c: In function ‘readl’: source/c_gpio.c:39:63: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘volatile uint32_t *’ {aka ‘volatile unsigned int *’} [-Wformat=] 39 | printf("mmap_base = 0x%x\t mmap_seek = 0x%x\t gpio_map = 0x%x\t total = 0x%x\n",mmap_base,mmap_seek,gpio_map,(gpio_map + mmap_seek)); | ~^ ~~~~~~~~ | | | | unsigned int volatile uint32_t * {aka volatile unsigned int *} | %ls source/c_gpio.c:39:78: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘volatile uint32_t *’ {aka ‘volatile unsigned int *’} [-Wformat=] 39 | printf("mmap_base = 0x%x\t mmap_seek = 0x%x\t gpio_map = 0x%x\t total = 0x%x\n",mmap_base,mmap_seek,gpio_map,(gpio_map + mmap_seek)); | ~^ ~~~~~~~~~~~~~~~~~~~~~~ | | | | unsigned int volatile uint32_t * {aka volatile unsigned int *} | %ls source/c_gpio.c: In function ‘setup’: source/c_gpio.c:64:6: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] 64 | if ((uint32_t)gpio_mem % PAGE_SIZE) | ^ source/c_gpio.c:65:28: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] 65 | gpio_mem += PAGE_SIZE - ((uint32_t)gpio_mem % PAGE_SIZE); | ^ source/c_gpio.c:70:25: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘uint8_t *’ {aka ‘unsigned char *’} [-Wformat=] 70 | printf("gpio_mem = 0x%x\t gpio_map = 0x%x\n",gpio_mem,gpio_map); | ~^ ~~~~~~~~ | | | | unsigned int uint8_t * {aka unsigned char *} | %hhn source/c_gpio.c:70:43: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘volatile uint32_t *’ {aka ‘volatile unsigned int *’} [-Wformat=] 70 | printf("gpio_mem = 0x%x\t gpio_map = 0x%x\n",gpio_mem,gpio_map); | ~^ ~~~~~~~~ | | | | unsigned int volatile uint32_t * {aka volatile unsigned int *} | %ls source/c_gpio.c:72:6: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] 72 | if ((uint32_t)gpio_map < 0) | ^ aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/common.c -o build/temp.linux-aarch64-3.9/source/common.o aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/constants.c -o build/temp.linux-aarch64-3.9/source/constants.o aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/event_gpio.c -o build/temp.linux-aarch64-3.9/source/event_gpio.o source/event_gpio.c: In function ‘event_cleanup’: source/event_gpio.c:444:15: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 444 | if ((gpio == -666) || (gpio_list->gpio == gpio)) | ^~ aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/py_gpio.c -o build/temp.linux-aarch64-3.9/source/py_gpio.o source/py_gpio.c: In function ‘py_setup_channel’: source/py_gpio.c:184:13: warning: unused variable ‘fn’ [-Wunused-variable] 184 | int func, fn; | ^~ source/py_gpio.c:184:7: warning: variable ‘func’ set but not used [-Wunused-but-set-variable] 184 | int func, fn; | ^~~~ source/py_gpio.c: In function ‘py_gpio_function_string’: source/py_gpio.c:357:7: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] 357 | str = FUNCTIONS[fn]; | ^ source/py_gpio.c: In function ‘PyInit_GPIO’: source/py_gpio.c:733:3: warning: ‘PyEval_ThreadsInitialized’ is deprecated [-Wdeprecated-declarations] 733 | if (!PyEval_ThreadsInitialized()) | ^~ In file included from /usr/include/python3.9/Python.h:145, from source/py_gpio.c:23: /usr/include/python3.9/ceval.h:129:36: note: declared here 129 | Py_DEPRECATED(3.9) PyAPI_FUNC(int) PyEval_ThreadsInitialized(void); | ^~~~~~~~~~~~~~~~~~~~~~~~~ source/py_gpio.c:734:5: warning: ‘PyEval_InitThreads’ is deprecated [-Wdeprecated-declarations] 734 | PyEval_InitThreads(); | ^~~~~~~~~~~~~~~~~~ In file included from /usr/include/python3.9/Python.h:145, from source/py_gpio.c:23: /usr/include/python3.9/ceval.h:130:37: note: declared here 130 | Py_DEPRECATED(3.9) PyAPI_FUNC(void) PyEval_InitThreads(void); | ^~~~~~~~~~~~~~~~~~ aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/py_pwm.c -o build/temp.linux-aarch64-3.9/source/py_pwm.o aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.9 -c source/soft_pwm.c -o build/temp.linux-aarch64-3.9/source/soft_pwm.o aarch64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-z,relro -g -fwrapv -O2 -g -ffile-prefix-map=/build/python3.9-PN012d/python3.9-3.9.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-aarch64-3.9/source/boards.o build/temp.linux-aarch64-3.9/source/c_gpio.o build/temp.linux-aarch64-3.9/source/common.o build/temp.linux-aarch64-3.9/source/constants.o build/temp.linux-aarch64-3.9/source/event_gpio.o build/temp.linux-aarch64-3.9/source/py_gpio.o build/temp.linux-aarch64-3.9/source/py_pwm.o build/temp.linux-aarch64-3.9/source/soft_pwm.o -o build/lib.linux-aarch64-3.9/OPi/GPIO.cpython-39-aarch64-linux-gnu.so /usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/common.h:48: multiple definition ofgpio_mode'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:48: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/common.h:49: multiple definition of pin_to_gpio'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:49: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/common.h:52: multiple definition of setup_error'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:52: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/common.h:53: multiple definition of module_setup'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:53: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/common.h:51: multiple definition of gpio_direction'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:51: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/common.h:47: multiple definition of board_type'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:47: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/boards.h:32: multiple definition of FUNCTIONS'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:32: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/boards.h:30: multiple definition of pin_to_gpio_prime'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:30: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/boards.h:29: multiple definition of pin_to_gpio_pc2'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:29: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/boards.h:28: multiple definition of pin_to_gpio_pc'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:28: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/boards.h:27: multiple definition of pin_to_gpio_zero2'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:27: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/boards.h:26: multiple definition of pin_to_gpio_zero'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:26: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/boards.h:25: multiple definition of pin_to_gpio_lite2'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:25: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/boards.h:24: multiple definition of pin_to_gpio_pi3'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:24: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/common.o:/root/OPI.GPIO/source/boards.h:23: multiple definition of pin_to_gpio_h616'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:23: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/common.h:53: multiple definition of module_setup'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:53: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/common.h:52: multiple definition of setup_error'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:52: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/common.h:51: multiple definition of gpio_direction'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:51: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/common.h:49: multiple definition of pin_to_gpio'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:49: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/common.h:48: multiple definition of gpio_mode'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:48: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/common.h:47: multiple definition of board_type'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:47: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/event_gpio.o:/root/OPI.GPIO/source/common.h:53: multiple definition of module_setup'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:53: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/event_gpio.o:/root/OPI.GPIO/source/common.h:52: multiple definition of setup_error'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:52: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/event_gpio.o:/root/OPI.GPIO/source/common.h:51: multiple definition of gpio_direction'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:51: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/event_gpio.o:/root/OPI.GPIO/source/common.h:49: multiple definition of pin_to_gpio'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:49: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/event_gpio.o:/root/OPI.GPIO/source/common.h:48: multiple definition of gpio_mode'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:48: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/event_gpio.o:/root/OPI.GPIO/source/common.h:47: multiple definition of board_type'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:47: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/common.h:48: multiple definition of gpio_mode'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:48: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/common.h:52: multiple definition of setup_error'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:52: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/common.h:47: multiple definition of board_type'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:47: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/common.h:49: multiple definition of pin_to_gpio'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:49: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/boards.h:29: multiple definition of pin_to_gpio_pc2'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:29: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/boards.h:25: multiple definition of pin_to_gpio_lite2'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:25: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/boards.h:23: multiple definition of pin_to_gpio_h616'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:23: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/boards.h:27: multiple definition of pin_to_gpio_zero2'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:27: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/boards.h:28: multiple definition of pin_to_gpio_pc'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:28: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/boards.h:24: multiple definition of pin_to_gpio_pi3'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:24: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/boards.h:26: multiple definition of pin_to_gpio_zero'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:26: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/boards.h:30: multiple definition of pin_to_gpio_prime'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:30: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/common.h:51: multiple definition of gpio_direction'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:51: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/common.h:53: multiple definition of module_setup'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:53: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/boards.h:32: multiple definition of FUNCTIONS'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/boards.h:32: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:50: multiple definition of bpi3'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:50: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:49: multiple definition of blite2'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:49: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:48: multiple definition of bh616'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:48: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:47: multiple definition of bprime'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:47: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:46: multiple definition of bpc2'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:46: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:45: multiple definition of bpc'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:45: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:44: multiple definition of bzeroplus3'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:44: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:43: multiple definition of bzeroh5'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:43: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:42: multiple definition of bzeroh2'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:42: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:41: multiple definition of bunknown'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:41: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:40: multiple definition of version'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:40: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:39: multiple definition of soc'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:39: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:38: multiple definition of bcm'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:38: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:37: multiple definition of board'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:37: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:36: multiple definition of unknown'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:36: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:35: multiple definition of both_edge'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:35: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:34: multiple definition of falling_edge'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:34: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:33: multiple definition of rising_edge'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:33: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:32: multiple definition of pud_down'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:32: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:31: multiple definition of pud_up'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:31: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:30: multiple definition of pud_off'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:30: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:29: multiple definition of output'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:29: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:28: multiple definition of input'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:28: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:27: multiple definition of low'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:27: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/constants.h:26: multiple definition of high'; build/temp.linux-aarch64-3.9/source/constants.o:/root/OPI.GPIO/source/constants.h:26: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/root/OPI.GPIO/source/common.h:51: multiple definition of gpio_direction'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:51: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/root/OPI.GPIO/source/py_pwm.h:23: multiple definition of PWMType'; build/temp.linux-aarch64-3.9/source/py_gpio.o:/root/OPI.GPIO/source/py_pwm.h:23: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/root/OPI.GPIO/source/common.h:53: multiple definition of module_setup'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:53: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/root/OPI.GPIO/source/common.h:52: multiple definition of setup_error'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:52: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/root/OPI.GPIO/source/common.h:49: multiple definition of pin_to_gpio'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:49: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/root/OPI.GPIO/source/common.h:48: multiple definition of gpio_mode'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:48: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/py_pwm.o:/root/OPI.GPIO/source/common.h:47: multiple definition of board_type'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:47: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/root/OPI.GPIO/source/soft_pwm.c:29: multiple definition of threads'; build/temp.linux-aarch64-3.9/source/event_gpio.o:/root/OPI.GPIO/source/event_gpio.c:58: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/root/OPI.GPIO/source/common.h:53: multiple definition of module_setup'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:53: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/root/OPI.GPIO/source/common.h:52: multiple definition of setup_error'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:52: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/root/OPI.GPIO/source/common.h:51: multiple definition of gpio_direction'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:51: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/root/OPI.GPIO/source/common.h:49: multiple definition of pin_to_gpio'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:49: first defined here
/usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/root/OPI.GPIO/source/common.h:48: multiple definition of gpio_mode'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:48: first defined here /usr/bin/ld: build/temp.linux-aarch64-3.9/source/soft_pwm.o:/root/OPI.GPIO/source/common.h:47: multiple definition of board_type'; build/temp.linux-aarch64-3.9/source/boards.o:/root/OPI.GPIO/source/common.h:47: first defined here
collect2: error: ld returned 1 exit status
error: command '/usr/bin/aarch64-linux-gnu-gcc' failed with exit code 1

`

@jvsteiner
Copy link

same here on Opi 3 zero

@Hermit-xx
Copy link

Using this clone link instead of eutim's link works: https://github.com/NadavK/OPI.GPIO

seems the eutim clone link doesn't take the latest merge for python3?

it's work on orangepi zero2 , thank you !!

@astahle11
Copy link

astahle11 commented Aug 31, 2024

Using this clone link instead of eutim's link works: https://github.com/NadavK/OPI.GPIO

seems the eutim clone link doesn't take the latest merge for python3?

Also worked on an Orange Pi 3 LTS running Armbian 23.02.2 Bullseye

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants