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
e1f0a0db
Commit
e1f0a0db
authored
Jun 25, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Add a wrapper macro for .cfi pseudo-ops in assembly code.
parent
d3b3b3e0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
+16
-0
configure
configure
+10
-0
configure.ac
configure.ac
+3
-0
config.h.in
include/config.h.in
+3
-0
No files found.
configure
View file @
e1f0a0db
...
...
@@ -18207,6 +18207,16 @@ if test "$ac_cv_c_cfi_support" = "yes"
then
asm_func_header
=
"
$asm_func_header
.cfi_startproc
\\
n
\\
t"
asm_func_trailer
=
"
\\
n
\\
t.cfi_endproc
$asm_func_trailer
"
cat
>>
confdefs.h
<<
\
_ACEOF
#define __ASM_CFI(str) str
_ACEOF
else
cat
>>
confdefs.h
<<
\
_ACEOF
#define __ASM_CFI(str) ""
_ACEOF
fi
asm_func_code
=
"
$asm_func_header
\"
code
\"
$asm_func_trailer
"
...
...
configure.ac
View file @
e1f0a0db
...
...
@@ -1519,6 +1519,9 @@ if test "$ac_cv_c_cfi_support" = "yes"
then
asm_func_header="$asm_func_header.cfi_startproc\\n\\t"
asm_func_trailer="\\n\\t.cfi_endproc$asm_func_trailer"
AC_DEFINE([__ASM_CFI(str)],[str],[Define to a macro to output a .cfi assembly pseudo-op])
else
AC_DEFINE([__ASM_CFI(str)],[""])
fi
asm_func_code="$asm_func_header\" code \"$asm_func_trailer"
...
...
include/config.h.in
View file @
e1f0a0db
...
...
@@ -1188,6 +1188,9 @@
/* Define to 1 if the X Window System is missing or not being used. */
#undef X_DISPLAY_MISSING
/* Define to a macro to output a .cfi assembly pseudo-op */
#undef __ASM_CFI
/* Define to a macro to define an assembly function */
#undef __ASM_DEFINE_FUNC
...
...
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