Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for m32 (0.02 sec)

  1. test/fixedbugs/issue6977.go

    // Some more cases.
    
    type M interface { m() }
    type M32 interface { m() int32 }
    type M64 interface { m() int64 }
    
    type U1 interface { m() }
    type U2 interface { m(); M }
    type U3 interface { M; m() }
    type U4 interface { M; M; M }
    type U5 interface { U1; U2; U3; U4 }
    
    type U6 interface { m(); m() } // ERROR "duplicate method .*m"
    type U7 interface { M32; m() } // ERROR "duplicate method .*m"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 20:30:02 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue6977.go

    // Some more cases.
    
    type M interface { m() }
    type M32 interface { m() int32 }
    type M64 interface { m() int64 }
    
    type U1 interface { m() }
    type U2 interface { m(); M }
    type U3 interface { M; m() }
    type U4 interface { M; M; M }
    type U5 interface { U1; U2; U3; U4 }
    
    type U6 interface { m(); m /* ERROR "duplicate method" */ () }
    type U7 interface { M32 /* ERROR "duplicate method" */ ; m() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:04:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/target-platforms/groovy/build.gradle

    model {
        toolChains {
            gcc(Gcc) {
                target("arm"){
                    cppCompiler.withArguments { args ->
                        args << "-m32"
                    }
                    linker.withArguments { args ->
                        args << "-m32"
                    }
                }
                target("sparc")
            }
        }
        platforms {
            arm {
                architecture "arm"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 688 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testfortran/fortran_test.go

    		// should reconcile the logic here and in cmd/go.. Maybe this should
    		// become a cmd/go script test to share that logic.
    
    		// Add -m32 if we're targeting 386, in case this is a cross-compile.
    		if runtime.GOARCH == "386" {
    			fcExtra = append(fcExtra, "-m32")
    		}
    
    		// Find libgfortran. If the FORTRAN compiler isn't bundled
    		// with the C linker, this may be in a path the C linker can't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 01:29:16 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccOptionsFileArgsWriterTest.groovy

            when:
            argsWriter.execute(args)
    
            then:
            args.size() == 2
            args.contains(arg)
            hasOptionsFile(args)
    
            where:
            arg    | _
            '-m32' | _
            '-m64' | _
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/mkall.sh

    	mksysnum="go run mksysnum.go 'https://gitweb.dragonflybsd.org/dragonfly.git/blob_plain/HEAD:/sys/kern/syscalls.master'"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    freebsd_386)
    	mkerrors="$mkerrors -m32"
    	mksyscall="go run mksyscall.go -l32"
    	mksysnum="go run mksysnum.go 'https://cgit.freebsd.org/src/plain/sys/kern/syscalls.master?h=stable/12'"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    freebsd_amd64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

        toolChains {
            ${toolChain.id} {
                target("arm"){
                    cCompiler.withArguments { args ->
                        args << "-m32"
                        args << "-DFRENCH"
                    }
                    linker.withArguments { args ->
                        args << "-m32"
                    }
                }
                target("sparc")
            }
        }
        platforms {
            arm {
                architecture "arm"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccOptionsFileArgsWriter.java

     */
    class GccOptionsFileArgsWriter extends OptionsFileArgsWriter {
        private static final List<String> CLI_ONLY_ARGS = Arrays.asList("-m32", "-m64");
    
        public GccOptionsFileArgsWriter(File tempDir) {
            super(tempDir);
        }
    
        @Override
        public List<String> transformArgs(List<String> originalArgs, File tempDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. src/syscall/mkall.sh

    	mksysnum="curl -s 'http://gitweb.dragonflybsd.org/dragonfly.git/blob_plain/HEAD:/sys/kern/syscalls.master' | ./mksysnum_dragonfly.pl"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    freebsd_386)
    	mkerrors="$mkerrors -m32"
    	mksyscall="./mksyscall.pl -l32"
    	mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    freebsd_amd64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

    model {
        toolChains {
            all{
                target("arm"){
                    cppCompiler.withArguments { args ->
                        args << "-m32"
                    }
                    linker.withArguments { args ->
                        args << "-m32"
                    }
                }
                target("sparc")
            }
        }
    }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top