Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for binaryInfo (0.14 sec)

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

            if (toolChain.visualCpp) {
                file.withExtension(".lib").assertDoesNotExist()
                file.withExtension(".exp").assertDoesNotExist()
            }
        }
    
        String getSoName() {
            return binaryInfo.soName
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/ExecutableFixture.groovy

        }
    
        public ExecOutput exec(Object... args) {
            assertExists()
            return file.execute(args as List, toolChain.runtimeEnv)
        }
    
        public List<String> listLinkedLibraries() {
            return binaryInfo.listLinkedLibraries()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinGccProducedBinaryInfo.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.binaryinfo
    /**
     * Binary information for GCC produced binaries. It approximate features required by our tests using dumpbin.exe from Visual Studio. It's not the right solution, but it works for most cases.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

            staticLibrary("build/libs/greetings/static/greetings").assertExists()
    
            and:
            try {
                println executable("build/exe/main/main").binaryInfo.listLinkedLibraries()
                println sharedLibrary("build/libs/hello/shared/hello").binaryInfo.listLinkedLibraries()
            } catch (UnsupportedOperationException ignored) {
                // Toolchain doesn't support it.
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

            binaries.each {
                assertMainSymbolIsAbsent(it)
            }
        }
    
        private static void assertMainSymbolIsAbsent(NativeBinaryFixture binary) {
            assert binary.binaryInfo.listSymbols().every { it.name != '_main' }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.platform.internal
    
    import org.gradle.nativeplatform.fixtures.binaryinfo.ReadelfBinaryInfo
    
    import spock.lang.Specification
    import spock.lang.Unroll
    
    class ReadelfBinaryInfoTest extends Specification {
        def "read list of files from readelf"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestIntegrationTest.groovy

            binaries.each {
                assertMainSymbolIsAbsent(it)
            }
        }
    
        private static void assertMainSymbolIsAbsent(NativeBinaryFixture binary) {
            assert binary.binaryInfo.listSymbols().every { it.name != '_main' }
        }
    
        private static def maybeWithLinuxMain(XCTestSourceElement sourceElement) {
            return new XCTestSourceElement(sourceElement.projectName) {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.8K bytes
    - Viewed (0)
Back to top