This is an automated email from the ASF dual-hosted git repository.

rainerjung pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-connectors.git


The following commit(s) were added to refs/heads/main by this push:
     new f18ae664b Add "dumpbin /DEPENDENTS" to show dll dependents
f18ae664b is described below

commit f18ae664b13c243614b18623213cd122b274d1d4
Author: rainerjung <[email protected]>
AuthorDate: Thu Jun 25 02:58:26 2026 +0200

    Add "dumpbin /DEPENDENTS" to show dll dependents
---
 .github/workflows/makefile.yml | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml
index 0cfd6d065..5bebb7171 100644
--- a/.github/workflows/makefile.yml
+++ b/.github/workflows/makefile.yml
@@ -37,6 +37,11 @@ jobs:
             cd iis
             echo "Building for ${{ matrix.build-arch }}"
             nmake -f Makefile.vc CPU=${{ matrix.build-arch }} 
STATIC_CRT=Hybrid PCRE=pcre2
+    - name: show dependents
+      shell: cmd
+      run: |
+            echo on
+            dumpbin.exe /DEPENDENTS 
native\iis\WIN10_X64_DLL_RELEASE\isapi_redirect.dll
     - uses: actions/upload-artifact@v7
       with:
         name: win10-pcre2-isapi_redirect
@@ -70,6 +75,11 @@ jobs:
             cd iis
             echo "Building for ${{ matrix.build-arch }}"
             nmake -f Makefile.vc CPU=${{ matrix.build-arch }} 
STATIC_CRT=Hybrid PCRE=pcre
+    - name: show dependents
+      shell: cmd
+      run: |
+            echo on
+            dumpbin.exe /DEPENDENTS 
native\iis\WIN10_X64_DLL_RELEASE\isapi_redirect.dll
     - uses: actions/upload-artifact@v7
       with:
         name: win10-pcre-isapi_redirect
@@ -103,6 +113,11 @@ jobs:
             cd iis
             echo "Building for ${{ matrix.build-arch }}"
             nmake -f Makefile.vc CPU=${{ matrix.build-arch }} WINVER=WIN7 
STATIC_CRT=Hybrid PCRE=pcre2
+    - name: show dependents
+      shell: cmd
+      run: |
+            echo on
+            dumpbin.exe /DEPENDENTS 
native\iis\WIN7_X64_DLL_RELEASE\isapi_redirect.dll
     - uses: actions/upload-artifact@v7
       with:
         name: win7-pcre2-isapi_redirect
@@ -136,6 +151,11 @@ jobs:
             cd iis
             echo "Building for ${{ matrix.build-arch }}"
             nmake -f Makefile.vc CPU=${{ matrix.build-arch }} WINVER=WIN7 
STATIC_CRT=Hybrid PCRE=pcre
+    - name: show dependents
+      shell: cmd
+      run: |
+            echo on
+            dumpbin.exe /DEPENDENTS 
native\iis\WIN7_X64_DLL_RELEASE\isapi_redirect.dll
     - uses: actions/upload-artifact@v7
       with:
         name: win7-pcre-isapi_redirect


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to