Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Sunxi Tools
Commits
6008951c
Commit
6008951c
authored
Aug 31, 2013
by
Eddy Beaupre
Committed by
Alejandro Mery
Jun 02, 2014
Browse files
Add check for GNU Tools for ARM Embedded Processors.
parent
52c89bc4
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
6008951c
...
...
@@ -11,6 +11,12 @@ AM_INIT_AUTOMAKE([1.9])
# Checks for programs.
AC_PROG_CC
AC_PROG_LN_S
if test x"$cross_compiling" != x"yes" ; then
AC_CHECK_PROG(ARMGCC_CHECK, arm-none-eabi-gcc, yes)
if test x"$ARMGCC_CHECK" != x"yes" ; then
AC_MSG_ERROR([Please install GNU Tools for ARM Embedded Processors before installing.])
fi
fi
# Checks for libraries.
PKG_CHECK_MODULES([LIBUSB], libusb-1.0 >= 1.0.0,, AC_MSG_ERROR([*** Required libusb-1.0 >= 1.0.0 not installed ***]))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment