Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
5a32f567
Commit
5a32f567
authored
15 years ago
by
Travis Kemen
Browse files
Options
Downloads
Patches
Plain Diff
this patch fixes gdb parallel build.
-Raphael SVN-Revision: 20187
parent
b6555735
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
package/gdb/Makefile
+18
-12
18 additions, 12 deletions
package/gdb/Makefile
with
18 additions
and
12 deletions
package/gdb/Makefile
+
18
−
12
View file @
5a32f567
# Copyright (C) 2006-2009 OpenWrt.org
#
# Copyright (C) 2006-2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
...
...
@@ -8,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME
:=
gdb
PKG_VERSION
:=
6.8
PKG_RELEASE
:=
1
PKG_RELEASE
:=
2
PKG_SOURCE
:=
$(
PKG_NAME
)
-
$(
PKG_VERSION
)
.tar.bz2
PKG_SOURCE_URL
:=
@GNU/gdb
...
...
@@ -19,17 +20,19 @@ include $(INCLUDE_DIR)/package.mk
define
Package/gdb/Default
SECTION
:=
utils
CATEGORY
:=
Utilities
DEPENDS
:=
@!
(
avr32||cris
)
DEPENDS
:=
@!
(
avr32||cris
)
endef
define
Package/gdb
$(
call
Package/gdb/Default
)
TITLE
:=
GNU Debugger
DEPENDS
+=
+libreadline +libncurses
DEPENDS
+=
+libreadline +libncurses
endef
define
Package/gdb/description
GNU
debugger
GDB,
the
GNU
Project
debugger,
allows
you
to
see
what
is
going
on
`inside'
another
program
while
it
executes
--
or
what
another
program
was
doing
at
the
moment
it
crashed.
endef
define
Package/gdbserver
...
...
@@ -38,14 +41,14 @@ $(call Package/gdb/Default)
endef
define
Package/gdbserver/description
GDBSERVER
is
a
program
that
allows
you
to
run
GDB
on
a
different
machine
than
the
one
which
is
running
the
program
being
debugged.
GDBSERVER
is
a
program
that
allows
you
to
run
GDB
on
a
different
machine
than
the
one
which
is
running
the
program
being
debugged.
endef
# XXX: add --disable-werror to prevent build failure with arm
CONFIGURE_ARGS
+=
\
--with-system-readline
\
--disable-werror
\
--disable-werror
CONFIGURE_VARS
+=
\
ac_cv_search_tgetent
=
"
$(
TARGET_LDFLAGS
)
-lncurses -lreadline"
...
...
@@ -54,19 +57,22 @@ define Build/Compile
$(MAKE)
-C
$(PKG_BUILD_DIR)
\
DESTDIR
=
"
$(
PKG_INSTALL_DIR
)
"
\
CPPFLAGS
=
"
$(
TARGET_CPPFLAGS
)
"
\
all install-gdb
all
$(MAKE)
-C
$(PKG_BUILD_DIR)
\
DESTDIR
=
"
$(
PKG_INSTALL_DIR
)
"
\
CPPFLAGS
=
"
$(
TARGET_CPPFLAGS
)
"
\
install-gdb
endef
define
Package/gdb/install
define
Package/gdb/install
$(INSTALL_DIR)
$(1)/usr/bin
$(INSTALL_BIN)
$(PKG_INSTALL_DIR)/usr/bin/gdb
$(1)/usr/bin/
endef
define
Package/gdbserver/install
define
Package/gdbserver/install
$(INSTALL_DIR)
$(1)/usr/bin
$(INSTALL_BIN)
$(PKG_INSTALL_DIR)/usr/bin/gdbserver
$(1)/usr/bin/
endef
$(
eval
$(
call BuildPackage,gdb
))
$(
eval
$(
call BuildPackage,gdbserver
))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment