Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f10513b2
Commit
f10513b2
authored
Jun 22, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Jun 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemaker: Don't use deprecated -mcpu option.
parent
02efd5a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
winemaker
tools/winemaker
+4
-4
No files found.
tools/winemaker
View file @
f10513b2
...
...
@@ -691,19 +691,19 @@ sub source_scan_project_file($$$)
# this option is always present and is already specified in the suffix rules
}
elsif
(
/^GB$/
)
{
# Blend Optimization
$prj_target_cflags
.=
"-m
cpu
=pentiumpro -D_M_IX86=500 "
;
$prj_target_cflags
.=
"-m
arch
=pentiumpro -D_M_IX86=500 "
;
}
elsif
(
/^G6$/
)
{
# Pentium Pro Optimization
$prj_target_cflags
.=
"-march=pentiumpro -D_M_IX86=600 "
;
}
elsif
(
/^G5$/
)
{
# Pentium Optimization
$prj_target_cflags
.=
"-m
cpu
=pentium -D_M_IX86=500 "
;
$prj_target_cflags
.=
"-m
arch
=pentium -D_M_IX86=500 "
;
}
elsif
(
/^G3$/
)
{
# 80386 Optimization
$prj_target_cflags
.=
"-m
cpu
=i386 -D_M_IX86=300 "
;
$prj_target_cflags
.=
"-m
arch
=i386 -D_M_IX86=300 "
;
}
elsif
(
/^G4$/
)
{
# 80486 Optimization
$prj_target_cflags
.=
"-m
cpu
=i486 -D_M_IX86=400 "
;
$prj_target_cflags
.=
"-m
arch
=i486 -D_M_IX86=400 "
;
}
elsif
(
/^Yc/
)
{
# Create Precompiled Header
}
elsif
(
/^Yu/
)
{
...
...
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