Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
e744281c
Commit
e744281c
authored
Mar 29, 2018
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Revert some incorrect uses of check_cc()
parent
ea3320bb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
configure
configure
+11
-5
No files found.
configure
View file @
e744281c
...
...
@@ -4846,7 +4846,9 @@ check_disable_warning_headers -Wno-unused-variable
check_objcflags
-fobjc-arc
&&
enable
objc_arc
check_cc blocks_extension
""
"void (^block)(void)"
test_cc
<<
EOF
&& enable blocks_extension
void (^block)(void);
EOF
# add some linker flags
check_ldflags
-Wl
,--warn-common
...
...
@@ -4900,10 +4902,14 @@ if enabled proper_dce; then
if
test_ldflags
-Wl
,
${
version_script
}
,
$TMPV
;
then
append SHFLAGS
'-Wl,${version_script},\$(SUBDIR)lib\$(NAME).ver'
quotes
=
'""'
check_cc symver_asm_label
""
"void ff_foo(void) __asm__ ("
av_foo@VERSION
");
void ff_foo(void) {
${
inline_asm
+__asm__(
$quotes
);
}
}"
check_cc symver_gnu_asm
""
"__asm__("
.symver ff_foo,av_foo@VERSION
");
void ff_foo(void) {}"
test_cc
<<
EOF
&& enable symver_asm_label
void ff_foo(void) __asm__ ("av_foo@VERSION");
void ff_foo(void) {
${
inline_asm
+__asm__(
$quotes
);
}
}
EOF
test_cc
<<
EOF
&& enable symver_gnu_asm
__asm__(".symver ff_foo,av_foo@VERSION");
void ff_foo(void) {}
EOF
fi
fi
...
...
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