Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xing Lin
qemu
Commits
295defa5
Commit
295defa5
authored
Apr 07, 2003
by
bellard
Browse files
alpha addition
git-svn-id:
svn://svn.savannah.nongnu.org/qemu/trunk@74
c046a42c-6fe2-441c-8c8c-71466251a162
parent
f801f97e
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure
View file @
295defa5
...
...
@@ -36,7 +36,7 @@ case "$cpu" in
alpha
)
cpu
=
"alpha"
;;
"Power Macintosh"
|
ppc
)
"Power Macintosh"
|
ppc
|ppc64
)
cpu
=
"powerpc"
;;
mips
)
...
...
@@ -209,14 +209,22 @@ echo "CFLAGS=$CFLAGS" >> config.mak
echo
"LDFLAGS=
$LDFLAGS
"
>>
config.mak
if
test
"
$cpu
"
=
"x86"
;
then
echo
"ARCH=i386"
>>
config.mak
echo
"#define HOST_I386 1"
>>
$TMPH
elif
test
"
$cpu
"
=
"armv4l"
;
then
echo
"ARCH=arm"
>>
config.mak
echo
"#define HOST_ARM 1"
>>
$TMPH
elif
test
"
$cpu
"
=
"powerpc"
;
then
echo
"ARCH=ppc"
>>
config.mak
echo
"#define HOST_PPC 1"
>>
$TMPH
elif
test
"
$cpu
"
=
"mips"
;
then
echo
"ARCH=mips"
>>
config.mak
echo
"#define HOST_MIPS 1"
>>
$TMPH
elif
test
"
$cpu
"
=
"s390"
;
then
echo
"ARCH=s390"
>>
config.mak
echo
"#define HOST_S390 1"
>>
$TMPH
elif
test
"
$cpu
"
=
"alpha"
;
then
echo
"ARCH=alpha"
>>
config.mak
echo
"#define HOST_ALPHA 1"
>>
$TMPH
else
echo
"Unsupported CPU"
exit
1
...
...
Write
Preview
Supports
Markdown
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