forked from SimonKagstrom/kcov
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue SimonKagstrom#83: build: Look for bintuils to make it optional
- Loading branch information
1 parent
fd52edb
commit 86cac29
Showing
2 changed files
with
96 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
# - Try to find libbfd | ||
# Once done this will define | ||
# | ||
# LIBBFD_FOUND - system has libbfd | ||
# LIBBFD_INCLUDE_DIRS - the libbfd include directory | ||
# LIBBFD_LIBRARIES - Link these to use libbfd | ||
# LIBBFD_DEFINITIONS - Compiler switches required for using libbfd | ||
# | ||
# Based on: | ||
# | ||
# Copyright (c) 2008 Bernhard Walle <[email protected]> | ||
# | ||
# Redistribution and use is allowed according to the terms of the New | ||
# BSD license. | ||
# For details see the accompanying COPYING-CMAKE-SCRIPTS file. | ||
# | ||
|
||
|
||
if (LIBBFD_LIBRARIES AND LIBBFD_INCLUDE_DIRS) | ||
set (LIBBFD_FIND_QUIETLY TRUE) | ||
endif (LIBBFD_LIBRARIES AND LIBBFD_INCLUDE_DIRS) | ||
|
||
find_path (LIBBFD_INCLUDE_DIRS | ||
NAMES | ||
bfd.h | ||
dis-asm.h | ||
PATHS | ||
/usr/include | ||
/usr/local/include | ||
/opt/local/include | ||
/opt/include | ||
ENV CPATH) | ||
|
||
# Ugly, yes ugly... | ||
find_library (LIBBFD_BFD_LIBRARY | ||
NAMES | ||
bfd | ||
PATHS | ||
/usr/lib | ||
/usr/lib64 | ||
/usr/local/lib | ||
/usr/local/lib64 | ||
/opt/local/lib | ||
/opt/usr/lib64 | ||
ENV LIBRARY_PATH | ||
ENV LD_LIBRARY_PATH) | ||
|
||
find_library (LIBBFD_IBERTY_LIBRARY | ||
NAMES | ||
iberty | ||
PATHS | ||
/usr/lib | ||
/usr/lib64 | ||
/usr/local/lib | ||
/usr/local/lib64 | ||
/opt/local/lib | ||
/opt/usr/lib64 | ||
ENV LIBRARY_PATH | ||
ENV LD_LIBRARY_PATH) | ||
|
||
find_library (LIBBFD_OPCODES_LIBRARY | ||
NAMES | ||
opcodes | ||
PATHS | ||
/usr/lib | ||
/usr/lib64 | ||
/usr/local/lib | ||
/usr/local/lib64 | ||
/opt/local/lib | ||
/opt/usr/lib64 | ||
ENV LIBRARY_PATH | ||
ENV LD_LIBRARY_PATH) | ||
|
||
|
||
include (FindPackageHandleStandardArgs) | ||
|
||
|
||
# handle the QUIETLY and REQUIRED arguments and set LIBBFD_FOUND to TRUE if all listed variables are TRUE | ||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LIBBFD DEFAULT_MSG | ||
LIBBFD_BFD_LIBRARY | ||
LIBBFD_IBERTY_LIBRARY | ||
LIBBFD_OPCODES_LIBRARY | ||
LIBBFD_INCLUDE_DIRS) | ||
|
||
mark_as_advanced(LIBBFD_INCLUDE_DIRS LIBBFD_LIBRARIES) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters