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

Compile error - backtrace - libexecinfo - src/app/CMakeLists.txt #16780

Closed
qgib opened this issue May 26, 2013 · 1 comment
Closed

Compile error - backtrace - libexecinfo - src/app/CMakeLists.txt #16780

qgib opened this issue May 26, 2013 · 1 comment
Labels
Bug Either a bug report, or a bug fix. Let's hope for the latter! Build/Install Related to compiling or installing QGIS
Milestone

Comments

@qgib
Copy link
Contributor

qgib commented May 26, 2013

Author Name: Loïc BARTOLETTI (@lbartoletti)
Original Redmine Issue: 7908
Affected QGIS version: master
Redmine category:build/install


Backtrace is a GNU libc/linuxism.

For FreeBSD you can compile and use it with libexecinfo library (see "devel/libexecinfo":http://www.freebsd.org/cgi/url.cgi?ports/devel/libexecinfo/pkg-descr).

CMakeLists needs to be patched using cmake FIND_LIBRARY: @find_library (EXECINFO_LIBRARY NAMES execinfo)@

Solution for FreeBSD into the patch attached (maybe other unix, but what about APPLE ?) :

IF (UNIX)
  find_library (EXECINFO_LIBRARY NAMES execinfo)
  TARGET_LINK_LIBRARIES(${QGIS_APP_NAME} ${EXECINFO_LIBRARY})
ENDIF (UNIX)



Related issue(s): #16774 (relates), #16781 (relates)
Redmine related issue(s): 7902, 7909


@qgib
Copy link
Contributor Author

qgib commented May 26, 2013

Author Name: Jürgen Fischer (@jef-n)


Fixed in changeset "3a987258b93e6a723675d2d460eca184544f37a9".


  • status_id was changed from Open to Closed

@qgib qgib added Bug Either a bug report, or a bug fix. Let's hope for the latter! Build/Install Related to compiling or installing QGIS labels May 24, 2019
@qgib qgib added this to the Version 2.0.0 milestone May 24, 2019
@qgib qgib closed this as completed May 24, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Either a bug report, or a bug fix. Let's hope for the latter! Build/Install Related to compiling or installing QGIS
Projects
None yet
Development

No branches or pull requests

1 participant