symbol lookup error: undefined symbol: gpiod_line_set_direction_input

2.2k Views Asked by At

I am trying to compile the libgpiod tutorial with Eclipse. The program compiles fine, but when I run it I get the following error below:

gcc Compiler and linker parameters are like this:

Building file: ../src/Maax-B-C.cpp
Invoking: Cross G++ Compiler
aarch64-none-linux-gnu-g++ -I"/home/ubu/eclipse-workspace/Maax-B-C/include" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/Maax-B-C.d" -MT"src/Maax-B-C.o" -o "src/Maax-B-C.o" "../src/Maax-B-C.cpp"
Finished building: ../src/Maax-B-C.cpp
 
Building target: Maax-B-C
Invoking: Cross G++ Linker
aarch64-none-linux-gnu-g++ -L"/home/ubu/eclipse-workspace/Maax-B-C/lib" -o "Maax-B-C"  ./src/Maax-B-C.o   -lgpiod
Finished building target: Maax-B-C

Runtime error:

./Maax-B-C: symbol lookup error: ./Maax-B-C: undefined symbol: gpiod_line_set_direction_input

other functions of the libgpiod is working well such as: gpiod_chip_open, gpiod_chip_get_line I also tried compiling the same code in the target os, it was a success but when I run the code, I came across with same error output.

library(libgpiod.so) and gpiod.h also have functions' prototype and symbols were exported:

nm -D libgpiod.so | grep "gpiod_line_set_direction_input"
00000000000034c0 T gpiod_line_set_direction_input
00000000000034d0 T gpiod_line_set_direction_input_bulk
 nm -D libgpiod.so | grep "gpiod_line_request_output"

00000000000039c0 T gpiod_line_request_output
0000000000003a10 T gpiod_line_request_output_flags

What is your suggestion to fix this problem?

Thank you.

0

There are 0 best solutions below