Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
e435ba94
Commit
e435ba94
authored
Jun 27, 2002
by
Tom Rini
Committed by
Paul Mackerras
Jun 27, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PPC32: check the binutils version and make sure it is new enough.
parent
838b0ec9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
arch/ppc/Makefile
arch/ppc/Makefile
+21
-0
No files found.
arch/ppc/Makefile
View file @
e435ba94
...
...
@@ -116,3 +116,24 @@ archclean:
@
$(MAKEBOOT)
clean
archmrproper
:
prepare
:
checkbin
ifdef
CONFIG_6xx
# Ensure this is binutils 2.12.1 (or 2.12.90.0.7) or later
NEW_AS
:=
$(
shell
echo
dssall |
$(AS)
-o
/dev/null
>
/dev/null 2>&1
;
echo
$$
?
)
GOODVER
:=
2.12.1
else
NEW_AS
:=
0
endif
ifneq
($(NEW_AS),0)
checkbin
:
@
echo
-n
'***
${VERSION}
.
${PATCHLEVEL}
kernels no longer build'
@
echo
'correctly with old versions of binutils.'
@
echo
'*** Please upgrade your binutils to
${GOODVER}
or newer'
@
false
else
checkbin
:
@
true
endif
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