Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for gcc_ (0.13 sec)

  1. src/cmd/cgo/gcc.go

    			n := &Name{Go: s, C: s}
    			names = append(names, n)
    			optional[n] = true
    		}
    
    		// Otherwise, we'll need to find out from gcc.
    		names = append(names, n)
    	}
    
    	// Bypass gcc if there's nothing left to find out.
    	if len(names) == 0 {
    		return needType
    	}
    
    	// Coerce gcc into telling us whether each name is a type, a value, or undeclared.
    	// For names, find out whether they are integer constants.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/internal/xcoff/testdata/gcc-ppc64-aix-dwarf2-exec

    Clément Chigot <******@****.***> 1544027005 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 10 18:52:31 UTC 2018
    - 55.8K bytes
    - Viewed (0)
  3. src/internal/xcoff/testdata/gcc-ppc32-aix-dwarf2-exec

    Clément Chigot <******@****.***> 1544027005 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 10 18:52:31 UTC 2018
    - 53.4K bytes
    - Viewed (0)
  4. src/debug/elf/file_test.go

    				}
    			}
    		})
    	}
    }
    
    func TestCompressedDWARF(t *testing.T) {
    	// Test file built with GCC 4.8.4 and as 2.24 using:
    	// gcc -Wa,--compress-debug-sections -g -c -o zdebug-test-gcc484-x86-64.obj hello.c
    	f, err := Open("testdata/zdebug-test-gcc484-x86-64.obj")
    	if err != nil {
    		t.Fatal(err)
    	}
    	dwarf, err := f.DWARF()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    | Operating System | Tool Chain | Notes
    
    | Linux
    | http://gcc.gnu.org/[GCC]
    |
    
    | Linux
    | http://clang.llvm.org[Clang]
    |
    
    | macOS
    | XCode
    | Uses the Clang tool chain bundled with XCode.
    
    | Windows
    | https://visualstudio.microsoft.com/[Visual C++]
    | Windows XP and later, Visual C++ 2010/2012/2013/2015/2017/2019.
    
    | Windows
    | http://gcc.gnu.org/[GCC] with http://cygwin.com[Cygwin 32 and Cygwin 64]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # define GTEST_OS_OPENBSD 1
    #elif defined __QNX__
    # define GTEST_OS_QNX 1
    #endif  // __CYGWIN__
    
    #ifndef GTEST_LANG_CXX11
    // gcc and clang define __GXX_EXPERIMENTAL_CXX0X__ when
    // -std={c,gnu}++{0x,11} is passed.  The C++11 standard specifies a
    // value for __cplusplus, and recent versions of clang, gcc, and
    // probably other compilers set that too in C++11 mode.
    # if __GXX_EXPERIMENTAL_CXX0X__ || __cplusplus >= 201103L
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wunknown-pragmas\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wpragmas\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Waddress-of-packed-member\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wunknown-warning-option\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wunaligned-access\"\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # define GTEST_OS_OPENBSD 1
    #elif defined __QNX__
    # define GTEST_OS_QNX 1
    #endif  // __CYGWIN__
    
    #ifndef GTEST_LANG_CXX11
    // gcc and clang define __GXX_EXPERIMENTAL_CXX0X__ when
    // -std={c,gnu}++{0x,11} is passed.  The C++11 standard specifies a
    // value for __cplusplus, and recent versions of clang, gcc, and
    // probably other compilers set that too in C++11 mode.
    # if __GXX_EXPERIMENTAL_CXX0X__ || __cplusplus >= 201103L
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. configure.py

      )
    
      return android_ndk_api_level
    
    
    def set_gcc_host_compiler_path(environ_cp):
      """Set GCC_HOST_COMPILER_PATH."""
      default_gcc_host_compiler_path = which('gcc') or ''
      cuda_bin_symlink = '%s/bin/gcc' % environ_cp.get('CUDA_TOOLKIT_PATH')
    
      if os.path.islink(cuda_bin_symlink):
        # os.readlink is only available in linux
        default_gcc_host_compiler_path = os.path.realpath(cuda_bin_symlink)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  10. src/cmd/link/internal/ld/lib.go

    		switch buildcfg.GOOS {
    		case "darwin", "freebsd", "openbsd":
    			flagExtld = []string{"clang"}
    		default:
    			flagExtld = []string{"gcc"}
    		}
    	}
    	return flagExtld
    }
    
    // findLibPathCmd uses cmd command to find gcc library libname.
    // It returns library full path if found, or "none" if not found.
    func (ctxt *Link) findLibPathCmd(cmd, libname string) string {
    	extld := ctxt.extld()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top