Python Forum
Embedded python fails to compile on Raspberry Pi
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Embedded python fails to compile on Raspberry Pi
#3
OK, problem solved. It seems that the behavior of the python3-config script was changed in Python 3.8: https://docs.python.org/3/whatsnew/3.8.h...ease-build

To embed Python into an application, a new --embed option must be passed to python3-config --libs --embed to get -lpython3.8 (link the application to libpython). To support both 3.8 and older, try python3-config --libs --embed first and fallback to python3-config --libs (without --embed) if the previous command fails.

So I changed the linker command to
gcc test.o -L/usr/local/opt/python-3.9.1/lib/python3.9/config-3.9-arm-linux-gnueabihf -L/usr/local/opt/python-3.9.1/lib -lcrypt -lpthread -ldl -lutil -lm -lpython3.9 -o test

and it finally worked! Thanks a lot everyone!
Reply


Messages In This Thread
RE: Embedded python fails to compile on Raspberry Pi - by tryfon - Dec-22-2020, 02:06 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to run detectron2, as python embedded code in C++, on GPU? hassaniqbal931 3 1,113 Nov-02-2023, 04:45 PM
Last Post: blabling2
  Anaconda 2.4.2: The JupyterLab 3.5.3 fails to run the python code of the Geographical jamalnuman 0 336 Aug-23-2023, 07:48 AM
Last Post: jamalnuman
  Adding libraries to embedded Python as a ZIP The_Oman 0 1,244 May-05-2023, 04:05 PM
Last Post: The_Oman
  Video recording with Raspberry Pi - What´s wrong with my python code? Montezuma1502 3 1,266 Feb-24-2023, 06:14 PM
Last Post: deanhystad
Bug Embedded Python Memory Leaks Alexei 1 1,035 Sep-16-2022, 01:15 PM
Last Post: Alexei
  Embedded Python in C++ Xeno 19 3,577 Aug-03-2022, 07:29 AM
Last Post: Gribouillis
  How to compile a Python script for a Windows / Linux executable? netanelst 2 1,337 May-24-2022, 07:02 AM
Last Post: netanelst
  cv2-python will n ot compile?? barryjo 5 2,210 Dec-26-2021, 06:42 PM
Last Post: barryjo
  Coding for Python and Raspberry pi beast 3 47,514 Sep-21-2021, 09:56 PM
Last Post: beast
  Python Compile error ajitnayak1987 4 3,664 Jun-03-2021, 12:11 PM
Last Post: ibreeden

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020