Git Product home page Git Product logo

libarea-old's People

Contributors

aewallin avatar danheeks avatar danielfalck avatar kimk avatar mumme74 avatar neomilium avatar nraynaud avatar sliptonic avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

libarea-old's Issues

undefined symbol while using libarea as python module

Under Ubuntu 11.10 64bits, I'm not able to use "area" module in python resulting HeeksCNC usage fail when I ask GCode generation.

I used the heekscad-install.sh found at http://code.google.com/p/heekscad/wiki/UbuntuInstallation

Configuration and compilation runs fine but importing "area" module fails:

python -c "import area"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
ImportError: /usr/local/lib/python2.7/dist-packages/area.so: undefined symbol: _ZNK5boost6python7objects21py_function_impl_base9max_arityEv

This bug produces exactly same effect than HeeksCNC's issue #18 (Heeks/heekscnc#18) but I double check, I already have the CMake build for libarea.

Finally I found the problem : the heekscad-install.sh script does not use the CMake way to build libarea.

--- heekscad-install.sh.orig    2012-02-23 23:39:13.000000000 +0100
+++ heekscad-install.sh 2012-02-23 23:34:07.000000000 +0100
@@ -38,24 +38,29 @@
 # Install libarea
 # area.so is required for pocket operations.
 cd ${BUILDPATH}/heekscad/heekscnc/libarea/
-make clean
+if [ -d build ]; then
+  cd build
+else
+  mkdir build
+  cd build
+fi
+cmake ..
 make
 sudo make install

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.