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
b7efaf8b
Commit
b7efaf8b
authored
Sep 19, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Sep 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemaker: Don't use -march options.
parent
824ab969
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
winemaker
tools/winemaker
+5
-5
No files found.
tools/winemaker
View file @
b7efaf8b
...
...
@@ -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
.=
"-
march=pentiumpro -
D_M_IX86=500 "
;
$prj_target_cflags
.=
"-D_M_IX86=500 "
;
}
elsif
(
/^G6$/
)
{
# Pentium Pro Optimization
$prj_target_cflags
.=
"-
march=pentiumpro -
D_M_IX86=600 "
;
$prj_target_cflags
.=
"-D_M_IX86=600 "
;
}
elsif
(
/^G5$/
)
{
# Pentium Optimization
$prj_target_cflags
.=
"-
march=pentium -
D_M_IX86=500 "
;
$prj_target_cflags
.=
"-D_M_IX86=500 "
;
}
elsif
(
/^G3$/
)
{
# 80386 Optimization
$prj_target_cflags
.=
"-
march=i386 -
D_M_IX86=300 "
;
$prj_target_cflags
.=
"-D_M_IX86=300 "
;
}
elsif
(
/^G4$/
)
{
# 80486 Optimization
$prj_target_cflags
.=
"-
march=i486 -
D_M_IX86=400 "
;
$prj_target_cflags
.=
"-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