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
539da1b0
Commit
539da1b0
authored
Jan 16, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: Output the 16-bit asm relay functions as needed and get rid of --relay16 mode.
parent
10e4a55b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
5 additions
and
36 deletions
+5
-36
Makefile.in
dlls/krnl386.exe16/Makefile.in
+0
-5
build.h
tools/winebuild/build.h
+1
-2
main.c
tools/winebuild/main.c
+0
-11
relay.c
tools/winebuild/relay.c
+3
-14
spec16.c
tools/winebuild/spec16.c
+1
-0
winebuild.man.in
tools/winebuild/winebuild.man.in
+0
-4
No files found.
dlls/krnl386.exe16/Makefile.in
View file @
539da1b0
...
...
@@ -59,11 +59,6 @@ C_SRCS = \
RC_SRCS
=
version.rc
EXTRA_OBJS
=
relay16asm.o
@MAKE_DLL_RULES@
relay16asm.o
:
$(WINEBUILD)
$(WINEBUILD)
$(WINEBUILDFLAGS)
-o
$@
--relay16
@DEPENDENCIES@
# everything below this line is overwritten by make depend
tools/winebuild/build.h
View file @
539da1b0
...
...
@@ -268,9 +268,8 @@ extern void output_spec16_file( DLLSPEC *spec );
extern
void
output_fake_module16
(
DLLSPEC
*
spec16
);
extern
void
output_res_o_file
(
DLLSPEC
*
spec
);
extern
void
output_asm_relays
(
void
);
extern
void
output_asm_relays16
(
void
);
extern
void
BuildRelays16
(
void
);
extern
void
BuildRelays32
(
void
);
extern
void
BuildSpec32File
(
DLLSPEC
*
spec
);
extern
void
add_16bit_exports
(
DLLSPEC
*
spec32
,
DLLSPEC
*
spec16
);
...
...
tools/winebuild/main.c
View file @
539da1b0
...
...
@@ -101,7 +101,6 @@ enum exec_mode_values
MODE_EXE
,
MODE_DEF
,
MODE_IMPLIB
,
MODE_RELAY16
,
MODE_RESOURCES
};
...
...
@@ -269,7 +268,6 @@ static const char usage_str[] =
" --def Build a .def file from a .spec file
\n
"
" --exe Build a .c file for an executable
\n
"
" --implib Build an import library
\n
"
" --relay16 Build the 16-bit relay assembly routines
\n
"
" --resources Build a .o file for the resource files
\n\n
"
"The mode options are mutually exclusive; you must specify one and only one.
\n\n
"
;
...
...
@@ -286,7 +284,6 @@ enum long_options_values
LONG_OPT_LDCMD
,
LONG_OPT_NMCMD
,
LONG_OPT_NXCOMPAT
,
LONG_OPT_RELAY16
,
LONG_OPT_RESOURCES
,
LONG_OPT_SAVE_TEMPS
,
LONG_OPT_SUBSYSTEM
,
...
...
@@ -308,7 +305,6 @@ static const struct option long_options[] =
{
"ld-cmd"
,
1
,
0
,
LONG_OPT_LDCMD
},
{
"nm-cmd"
,
1
,
0
,
LONG_OPT_NMCMD
},
{
"nxcompat"
,
1
,
0
,
LONG_OPT_NXCOMPAT
},
{
"relay16"
,
0
,
0
,
LONG_OPT_RELAY16
},
{
"resources"
,
0
,
0
,
LONG_OPT_RESOURCES
},
{
"save-temps"
,
0
,
0
,
LONG_OPT_SAVE_TEMPS
},
{
"subsystem"
,
1
,
0
,
LONG_OPT_SUBSYSTEM
},
...
...
@@ -500,9 +496,6 @@ static char **parse_options( int argc, char **argv, DLLSPEC *spec )
if
(
optarg
[
0
]
==
'n'
||
optarg
[
0
]
==
'N'
)
spec
->
dll_characteristics
&=
~
IMAGE_DLLCHARACTERISTICS_NX_COMPAT
;
break
;
case
LONG_OPT_RELAY16
:
set_exec_mode
(
MODE_RELAY16
);
break
;
case
LONG_OPT_RESOURCES
:
set_exec_mode
(
MODE_RESOURCES
);
break
;
...
...
@@ -660,10 +653,6 @@ int main(int argc, char **argv)
if
(
!
parse_input_file
(
spec
))
break
;
output_import_lib
(
spec
,
argv
);
break
;
case
MODE_RELAY16
:
if
(
argv
[
0
])
fatal_error
(
"file argument '%s' not allowed in this mode
\n
"
,
argv
[
0
]
);
BuildRelays16
();
break
;
case
MODE_RESOURCES
:
load_resources
(
argv
,
spec
);
output_res_o_file
(
spec
);
...
...
tools/winebuild/relay.c
View file @
539da1b0
...
...
@@ -903,23 +903,15 @@ static void BuildPendingEventCheck(void)
/*******************************************************************
*
BuildR
elays16
*
output_asm_r
elays16
*
* Build all the 16-bit relay callbacks
*/
void
BuildR
elays16
(
void
)
void
output_asm_r
elays16
(
void
)
{
if
(
target_cpu
!=
CPU_x86
)
{
output
(
"/* File not used with this architecture. Do not edit! */
\n\n
"
);
return
;
}
/* File header */
output
(
"/* File generated automatically. Do not edit! */
\n\n
"
);
output
(
"
\t
.text
\n
"
);
output
(
"%s:
\n\n
"
,
asm_name
(
"__wine_spec_thunk_text_16"
)
);
output
(
"%s
\n
"
,
asm_globl
(
"__wine_call16_start"
)
);
...
...
@@ -958,14 +950,11 @@ void BuildRelays16(void)
output
(
"
\n\t
.data
\n\t
.align %d
\n
"
,
get_alignment
(
4
)
);
output
(
"%s
\n\t
.long 0
\n
"
,
asm_globl
(
"CallTo16_DataSelector"
)
);
output
(
"%s
\n\t
.long 0
\n
"
,
asm_globl
(
"CallTo16_TebSelector"
)
);
if
(
UsePIC
)
output
(
"wine_ldt_copy_ptr:
\t
.long %s
\n
"
,
asm_name
(
"wine_ldt_copy"
)
);
output
(
"
\t
.text
\n
"
);
output
(
"%s:
\n
\n
"
,
asm_name
(
"__wine_spec_thunk_text_32"
)
);
output
(
"%s:
\n
"
,
asm_name
(
"__wine_spec_thunk_text_32"
)
);
build_call_from_regs_x86
();
output_function_size
(
"__wine_spec_thunk_text_32"
);
output_gnu_stack_note
();
}
...
...
tools/winebuild/spec16.c
View file @
539da1b0
...
...
@@ -773,6 +773,7 @@ void output_spec16_file( DLLSPEC *spec16 )
output_stubs
(
spec16
);
output_exports
(
spec32
);
output_imports
(
spec16
);
if
(
is_undefined
(
"__wine_call_from_16"
))
output_asm_relays16
();
if
(
spec16
->
main_module
)
{
output
(
"
\n\t
%s
\n
"
,
get_asm_string_section
()
);
...
...
tools/winebuild/winebuild.man.in
View file @
539da1b0
...
...
@@ -50,10 +50,6 @@ Build a .def file from a spec file. The .spec file is specified via the
Build a PE import library from a spec file. The .spec file is
specified via the -E option.
.TP
.B \--relay16
Generate the assembly code for the 16-bit relay routines. This is for
Wine internal usage only, you should never need to use this option.
.TP
.B \--resources
Generate a .o file containing all the input resources. This is useful
when building with a PE compiler, since the PE binutils cannot handle
...
...
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