Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for we (0.17 sec)

  1. misc/ios/clangwrap.sh

    else
    	SDK=iphonesimulator
    	PLATFORM=ios-simulator
    	CLANGARCH="x86_64"
    fi
    
    SDK_PATH=`xcrun --sdk $SDK --show-sdk-path`
    export IPHONEOS_DEPLOYMENT_TARGET=5.1
    # cmd/cgo doesn't support llvm-gcc-4.2, so we have to use clang.
    CLANG=`xcrun --sdk $SDK --find clang`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 16:48:07 UTC 2021
    - 626 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/cover.bash

    # A quick and dirty way to obtain code coverage from rulegen's main func. For
    # example:
    #
    #     ./cover.bash && go tool cover -html=cover.out
    #
    # This script is needed to set up a temporary test file, so that we don't break
    # regular 'go run .' usage to run the generator.
    
    cat >main_test.go <<-EOF
    	//go:build ignore
    
    	package main
    
    	import "testing"
    
    	func TestCoverage(t *testing.T) { main() }
    EOF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 664 bytes
    - Viewed (0)
Back to top