Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 92 for cgoEnabled (0.22 sec)

  1. src/cmd/go/testdata/script/repro_build.txt

    # Check that goroutine scheduling does not affect compiler output.
    # If it does, reproducible builds will not work very well.
    [short] skip
    [GOOS:aix] env CGO_ENABLED=0  # go.dev/issue/56896
    env GOMAXPROCS=16
    go build -a -o http16.o net/http
    env GOMAXPROCS=17
    go build -a -o http17.o net/http
    cmp -q http16.o http17.o
    env GOMAXPROCS=18
    go build -a -o http18.o net/http
    cmp -q http16.o http18.o
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 18:59:19 UTC 2023
    - 686 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_darwin_cc_arch.txt

    # Test that we pass -arch flag to C compiler on Darwin (issue 43692).
    
    [!GOOS:darwin] skip
    [!cgo] skip
    
    # clear CC, in case user sets it
    env CC=
    
    env CGO_ENABLED=1
    
    env GOARCH=amd64
    go build -n -x c.go
    stderr 'clang.*-arch x86_64'
    
    env GOARCH=arm64
    go build -n -x c.go
    stderr 'clang.*-arch arm64'
    
    -- c.go --
    package main
    
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 350 bytes
    - Viewed (0)
  3. docs/debugging/build.sh

    #!/bin/bash
    
    export CGO_ENABLED=0
    for dir in docs/debugging/*/; do
    	bin=$(basename ${dir})
    	go build -C ${dir} -o ${PWD}/${bin}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 133 bytes
    - Viewed (0)
  4. common/scripts/gobuild.sh

    GOBUILDFLAGS=${GOBUILDFLAGS:-""}
    # Split GOBUILDFLAGS by spaces into an array called GOBUILDFLAGS_ARRAY.
    IFS=' ' read -r -a GOBUILDFLAGS_ARRAY <<< "$GOBUILDFLAGS"
    
    GCFLAGS=${GCFLAGS:-}
    export CGO_ENABLED=${CGO_ENABLED:-0}
    
    if [[ "${STATIC}" !=  "1" ]];then
        LDFLAGS=""
    fi
    
    # gather buildinfo if not already provided
    # For a release build BUILDINFO should be produced
    # at the beginning of the build and used throughout
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 14:08:46 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. .github/workflows/go.yml

            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Build on ${{ matrix.os }}
            if: matrix.os == 'ubuntu-latest'
            env:
              CGO_ENABLED: 0
              GO111MODULE: on
              MINIO_KMS_SECRET_KEY: "my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw="
              MINIO_KMS_AUTO_ENCRYPTION: on
            run: |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. Makefile

    	@echo "Running tests for IAM (external IDP, etcd backends)"
    	@MINIO_API_REQUESTS_MAX=10000 CGO_ENABLED=0 go test -tags kqueue,dev -v -run TestIAM* ./cmd
    	@echo "Running tests for IAM (external IDP, etcd backends) with -race"
    	@MINIO_API_REQUESTS_MAX=10000 GORACE=history_size=7 CGO_ENABLED=1 go test -race -tags kqueue,dev -v -run TestIAM* ./cmd
    
    test-iam-ldap-upgrade-import: install-race ## verify IAM (external LDAP IDP)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_cc_cache_issue64423.txt

    mkdir $WORK/bin
    go build -o $WORK/bin/clang$GOEXE ./fakeclang
    [!GOOS:plan9] env PATH=$WORK${/}bin
    [GOOS:plan9] env path=$WORK${/}bin
    
    # Force CGO_ENABLED=1 so that the following commands should error
    # out if the fake clang doesn't work.
    env CGO_ENABLED=1
    
    # The bug in https://go.dev/issue/64423 resulted in cache keys that
    # didn't contain any information about the C compiler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:13:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //	    GOARCH        string   // target architecture
    //	    GOOS          string   // target operating system
    //	    GOROOT        string   // Go root
    //	    GOPATH        string   // Go path
    //	    CgoEnabled    bool     // whether cgo can be used
    //	    UseAllFiles   bool     // use files regardless of //go:build lines, file names
    //	    Compiler      string   // compiler to assume when computing target paths
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/install_msan_and_race_and_asan_require_cgo.txt

    # Tests Issue #21895
    
    env CGO_ENABLED=0
    
    [GOOS:darwin] [!short] [race] go build -race triv.go
    
    [!GOOS:darwin] [race] ! go install -race triv.go
    [!GOOS:darwin] [race] stderr '-race requires cgo'
    [!GOOS:darwin] [race] ! stderr '-msan'
    
    [msan] ! go install -msan triv.go
    [msan] stderr '-msan requires cgo'
    [msan] ! stderr '-race'
    
    [asan] ! go install -asan triv.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 21:38:55 UTC 2022
    - 626 bytes
    - Viewed (0)
  10. .github/workflows/go-cross.yml

            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Build on ${{ matrix.os }}
            if: matrix.os == 'ubuntu-latest'
            env:
              CGO_ENABLED: 0
              GO111MODULE: on
            run: |
              sudo sysctl net.ipv6.conf.all.disable_ipv6=0
              sudo sysctl net.ipv6.conf.default.disable_ipv6=0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 957 bytes
    - Viewed (0)
Back to top