element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
EXPLORE-NFC
  • Products
  • Dev Tools
  • EXPLORE-NFC
  • More
  • Cancel
EXPLORE-NFC
Forum Error building the library Neardal
  • Blog
  • Forum
  • Documents
  • Events
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join EXPLORE-NFC to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 7 replies
  • Subscribers 11 subscribers
  • Views 890 views
  • Users 0 members are here
Related

Error building the library Neardal

Former Member
Former Member over 10 years ago

Hi All,

 

I tried all the different solutions available for building the library neardal. Everytime I face the same error.

 

make  all-recursive

make[1]: Entering directory '/home/pi/Source/neardal-master'

Making all in lib

make[2]: Entering directory '/home/pi/Source/neardal-master/lib'

Makefile:422: warning: overriding recipe for target '.dirstamp'

Makefile:396: warning: ignoring old recipe for target '.dirstamp'

Makefile:425: warning: overriding recipe for target '.deps/.dirstamp'

Makefile:399: warning: ignoring old recipe for target '.deps/.dirstamp'

Makefile:484: .deps/libgenerated_la-dbus-object-manager.Plo: No such file or directory

Makefile:485: .deps/libgenerated_la-dbus-properties.Plo: No such file or directory

Makefile:486: .deps/libgenerated_la-neard_adapter_proxy.Plo: No such file or directory

Makefile:487: .deps/libgenerated_la-neard_manager_proxy.Plo: No such file or directory

Makefile:488: .deps/libgenerated_la-neard_tag_proxy.Plo: No such file or directory

Makefile:489: .deps/libgenerated_la-neardal_agent.Plo: No such file or directory

Makefile:490: .deps/neardal.Plo: No such file or directory

Makefile:491: .deps/neardal_adapter.Plo: No such file or directory

Makefile:492: .deps/neardal_agent_mgr.Plo: No such file or directory

Makefile:493: .deps/neardal_device.Plo: No such file or directory

Makefile:494: .deps/neardal_manager.Plo: No such file or directory

Makefile:495: .deps/neardal_record.Plo: No such file or directory

Makefile:496: .deps/neardal_tag.Plo: No such file or directory

Makefile:497: .deps/neardal_tools.Plo: No such file or directory

Makefile:498: .deps/neardal_traces.Plo: No such file or directory

make[2]: *** No rule to make target '.deps/neardal_traces.Plo'.  Stop.

make[2]: Leaving directory '/home/pi/Source/neardal-master/lib'

Makefile:411: recipe for target 'all-recursive' failed

make[1]: *** [all-recursive] Error 1

make[1]: Leaving directory '/home/pi/Source/neardal-master'

Makefile:296: recipe for target 'all' failed

make: *** [all] Error 2

 

 

 

Can some one please help me with this , or can you please list down the steps that you followed to install the library.

 

Thanks,

Mohit

  • Sign in to reply
  • Cancel
  • clem57
    clem57 over 10 years ago

    Did you follow this? https://github.com/connectivity/neardal

    Clem

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 10 years ago in reply to clem57

    Hey Clem,

     

    Ya i followed the exact procedure

    1) ./autogen.sh

    2) ./configure

    3) make

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 10 years ago

    I encountered this exact problem.  I solved it by:

    - deleted the "neardal" directory in which I had run "make" to cause this problem

    - fetched the neardal tarball again with "wget https://github.com/connectivity/neardal/archive/0.14.tar.gz"

    - uncompressed the tarball with by double clicking it in the GUI file manager, creating the "neardal-0.14" directory

    - then typed these commands into a shell window:

    cd neardal-0.14

    ./autogen.sh

    ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var

    make

    sudo make install

    Everything went nicely, this  time.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 10 years ago in reply to Former Member

    Hello,

    Thank you Ed Boakes,for your solution! All of that helped me.

    However once that I launch "./ncl" I've:

     

    root@raspberrypi:/home/pi/neardal-0.14/ncl# ./ncl

    Compiled at May  9 2015 : 02:28:10

     

    Segmentation fault

     

    I've folowinf this :

    Testing

    =======

    Compile neardal and get Neard running.

    under ncl directory (ncl:Neardal Command Line) run:

     

    ./ncl

     

    This command line interpretor include a set of the main commands use to test neardal/Neard.

     

     

    I would like use my NXP - EXPLORE-NFC for raspberry pi and to be able to read the proprities and the content of tag in order to write on it.

     

    Someone could he help me please ?

    Because Element14 in their "Quick Start-up Guide" mention only to: "Programming tags : To program tags quickly, you can use the NXP TagWriter app for Android:"

    That not possible to write with the card ?

    I buy this tool to do that.

    Please help me

     

    Thanks Axel

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 10 years ago in reply to Former Member

    Hi Axel,

     

    Never seen your previous problem but could you re-sync and retry please?

     

    just

     

    ./autogen.sh

    make

    would be enough. You can execute the command line tool localy (ncl/ncl), avoiding a make install, or try the demo binary (used as sample code), with demo/demo.

     

    Hope this help,

    Frederic

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • flashback
    flashback over 9 years ago in reply to Former Member

    SOLVED --> look @ next post

     

    Hi Frederic, i'm trying to compile too, but this time for Kali linux for raspberry 2, and i'm stuck here:

    .....

    configure: NEARDAL will be compiled in C99 mode

    configure: NEARDAL will be compiled with -Wpedantic

    configure: NEARDAL will be compiled with CFLAGS=-g -O2

    configure: NEARDAL will be compiled with extra flags NEARDAL_EXTRA_FLAGS=-Wpedantic

    checking for a sed that does not truncate output... (cached) /bin/sed

    ./configure: line 11648: syntax error near unexpected token `gio,'

    ./configure: line 11648: `PKG_CHECK_MODULES(gio, gio-unix-2.0 >= 2.30,'

     

    could you please help me to find out which lib is actually missing ?

    i already tried installing:

    libgio-cil - CLI binding for the GIO I/O stack 2.22

    libgio2.0-cil-dev - CLI binding for the GIO I/O stack 2.22

    libgio3.0-cil - CLI binding for the GIO libraries 2.24

    libgio3.0-cil-dev - CLI binding for GIO 2.24

    but none of that worked (in fact all are version <= 2.30)

    Any hint would be welcome !

    Thanks in advance.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • flashback
    flashback over 9 years ago in reply to flashback

    I was wrong, searching for the wrong libs, by the way, i solved it with:

    apt-get install libgtkgl2.0-dev

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube