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
be7109c1
Commit
be7109c1
authored
Sep 02, 2002
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ar -s -> ranlib
Originally committed as revision 900 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
ecfd40b3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
configure
configure
+3
-0
Makefile
libav/Makefile
+2
-1
Makefile
libavcodec/Makefile
+2
-1
No files found.
configure
View file @
be7109c1
...
...
@@ -21,6 +21,7 @@ prefix="/usr/local"
cross_prefix
=
""
cc
=
"gcc"
ar
=
"ar"
ranlib
=
"ranlib"
make
=
"make"
strip
=
"strip"
cpu
=
`
uname
-m
`
...
...
@@ -239,6 +240,7 @@ fi
cc
=
"
${
cross_prefix
}${
cc
}
"
ar
=
"
${
cross_prefix
}${
ar
}
"
ranlib
=
"
${
cross_prefix
}${
ranlib
}
"
strip
=
"
${
cross_prefix
}${
strip
}
"
# ---
...
...
@@ -392,6 +394,7 @@ echo "prefix=$prefix" >> config.mak
echo
"MAKE=
$make
"
>>
config.mak
echo
"CC=
$cc
"
>>
config.mak
echo
"AR=
$ar
"
>>
config.mak
echo
"RANLIB=
$ranlib
"
>>
config.mak
echo
"STRIP=
$strip
"
>>
config.mak
echo
"OPTFLAGS=
$CFLAGS
"
>>
config.mak
echo
"LDFLAGS=
$LDFLAGS
"
>>
config.mak
...
...
libav/Makefile
View file @
be7109c1
...
...
@@ -43,7 +43,8 @@ all: $(LIB)
$(LIB)
:
$(OBJS)
rm
-f
$@
$(AR)
rcs
$@
$(OBJS)
$(AR)
rc
$@
$(OBJS)
$(RANLIB)
$@
installlib
:
all
install
-m
644
$(LIB)
$(prefix)
/lib
...
...
libavcodec/Makefile
View file @
be7109c1
...
...
@@ -96,7 +96,8 @@ tests: apiexample cpuid_test $(TESTS)
$(LIB)
:
$(OBJS)
rm
-f
$@
$(AR)
rcs
$@
$(OBJS)
$(AR)
rc
$@
$(OBJS)
$(RANLIB)
$@
$(SLIB)
:
$(OBJS)
$(CC)
$(SHFLAGS)
-o
$@
$(OBJS)
$(EXTRALIBS)
...
...
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