Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4f9f7f13
Commit
4f9f7f13
authored
Jun 30, 2005
by
Phil Krylov
Committed by
Alexandre Julliard
Jun 30, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed winebuild operation in Darwin.
parent
7110f827
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
utils.c
tools/winebuild/utils.c
+7
-5
No files found.
tools/winebuild/utils.c
View file @
4f9f7f13
...
...
@@ -404,12 +404,11 @@ const char *func_declaration( const char *func )
switch
(
target_platform
)
{
case
PLATFORM_APPLE
:
return
""
;
case
PLATFORM_WINDOWS
:
sprintf
(
buffer
,
".def _%s; .scl 2; .type 32; .endef"
,
func
);
break
;
case
PLATFORM_APPLE
:
sprintf
(
buffer
,
".type _%s,@function"
,
func
);
break
;
case
PLATFORM_SVR4
:
sprintf
(
buffer
,
".type %s,2"
,
func
);
break
;
...
...
@@ -440,8 +439,11 @@ const char *get_asm_string_keyword(void)
{
switch
(
target_platform
)
{
case
PLATFORM_SVR4
:
return
".asciz"
;
default:
return
".string"
;
case
PLATFORM_APPLE
:
case
PLATFORM_SVR4
:
return
".asciz"
;
default:
return
".string"
;
}
}
...
...
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