Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
ba501462
Commit
ba501462
authored
Jul 06, 2009
by
Geoffroy Couprie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Strip all debug symbols from binaries (and remove useless case for mozilla and activex)
parent
6030a03b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
15 deletions
+2
-15
Makefile.am
Makefile.am
+2
-15
No files found.
Makefile.am
View file @
ba501462
...
@@ -887,30 +887,17 @@ package-win-common-strip: package-win32-base-debug
...
@@ -887,30 +887,17 @@ package-win-common-strip: package-win32-base-debug
for
i
in
""
vlc-
$(VERSION)
/
*
$(LIBEXT)
;
\
for
i
in
""
vlc-
$(VERSION)
/
*
$(LIBEXT)
;
\
do if
test
-n
"
$$
i"
;
then
\
do if
test
-n
"
$$
i"
;
then
\
$(OBJCOPY)
--only-keep-debug
"
$$
i"
"
$$
i.dbg"
;
\
$(OBJCOPY)
--only-keep-debug
"
$$
i"
"
$$
i.dbg"
;
\
$(OBJCOPY)
--strip-
debug
"
$$
i"
;
\
$(OBJCOPY)
--strip-
all
"
$$
i"
;
\
$(OBJCOPY)
--add-gnu-debuglink
=
"
$$
i.dbg"
"
$$
i"
;
\
$(OBJCOPY)
--add-gnu-debuglink
=
"
$$
i.dbg"
"
$$
i"
;
\
mv
"
$$
i.dbg"
"
$(win32_debugdir)
"
;
\
mv
"
$$
i.dbg"
"
$(win32_debugdir)
"
;
\
fi
;
done
fi
;
done
if
BUILD_MOZILLA
$(OBJCOPY)
--only-keep-debug
"$(npvlc)"
"$(npvlc).dbg"
$(OBJCOPY)
--strip-debug
"$(npvlc)"
$(OBJCOPY)
--add-gnu-debuglink
=
"
$(npvlc)
.dbg"
"
$(npvlc)
"
mv
"$(npvlc).dbg"
"$(win32_debugdir)"
endif
if
BUILD_ACTIVEX
$(OBJCOPY)
--only-keep-debug
"$(axvlc)"
"$(axvlc).dbg"
$(OBJCOPY)
--strip-debug
"$(axvlc)"
$(OBJCOPY)
--add-gnu-debuglink
=
"
$(axvlc)
.dbg"
"
$(axvlc)
"
mv
"$(axvlc).dbg"
"$(win32_debugdir)"
endif
#strip all plugins dll
#strip all plugins dll
package-win32-base
:
package-win-common-strip
package-win32-base
:
package-win-common-strip
for
i
in
""
$(win32_destdir)
/plugins/
*
$(LIBEXT)
;
\
for
i
in
""
$(win32_destdir)
/plugins/
*
$(LIBEXT)
;
\
do if
test
-n
"
$$
i"
;
then
\
do if
test
-n
"
$$
i"
;
then
\
$(OBJCOPY)
--only-keep-debug
"
$$
i"
"
$$
i.dbg"
;
\
$(OBJCOPY)
--only-keep-debug
"
$$
i"
"
$$
i.dbg"
;
\
$(OBJCOPY)
--strip-
debug
"
$$
i"
;
\
$(OBJCOPY)
--strip-
all
"
$$
i"
;
\
$(OBJCOPY)
--add-gnu-debuglink
=
"
$$
i.dbg"
"
$$
i"
;
\
$(OBJCOPY)
--add-gnu-debuglink
=
"
$$
i.dbg"
"
$$
i"
;
\
mv
"
$$
i.dbg"
"
$(win32_debugdir)
"
;
\
mv
"
$$
i.dbg"
"
$(win32_debugdir)
"
;
\
fi
;
done
fi
;
done
...
...
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