Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getDumpbinHeaders (0.16 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

            final candidate = new File(vcBin, exe)
            if (candidate.exists()) {
                return candidate
            }
            throw new RuntimeException("dumpbin.exe not found")
        }
    
        protected String getDumpbinHeaders() {
            def dumpbin = findExe("dumpbin.exe")
            def process = [dumpbin.absolutePath, '/HEADERS', binaryFile.absolutePath].execute(["PATH=$vcPath"], null)
            return process.inputStream.text
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top