Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
62be1caf
Commit
62be1caf
authored
Sep 24, 2017
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Bail out early if neither static nor shared libs are built
parent
c6496de3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
configure
configure
+11
-11
No files found.
configure
View file @
62be1caf
...
...
@@ -2857,6 +2857,17 @@ done
disabled logging
&&
logfile
=
/dev/null
# we need to build at least one lib type
if
!
enabled_any static shared
;
then
cat
<<
EOF
At least one library type must be built.
Specify --enable-static to build the static libraries or --enable-shared to
build the shared libraries as well. To only build the shared libraries specify
--disable-static in addition to --enable-shared.
EOF
exit
1
fi
# Die early if licensing-related configure options are incompatible.
die_license_disabled
()
{
enabled
$1
||
{
enabled
$v
&&
die
"
$v
is
$1
and --enable-
$1
is not specified."
;
}
...
...
@@ -4184,17 +4195,6 @@ check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PI
set_default
$PATHS_LIST
set_default nm
# we need to build at least one lib type
if
!
enabled_any static shared
;
then
cat
<<
EOF
At least one library type must be built.
Specify --enable-static to build the static libraries or --enable-shared to
build the shared libraries as well. To only build the shared libraries specify
--disable-static in addition to --enable-shared.
EOF
exit
1
fi
disabled optimizations
||
check_cflags
-fomit-frame-pointer
enable_weak_pic
()
{
...
...
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