Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fusel (0.16 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	FNMSUB F1, F2, F3, F4           // fc8110fc
    	FNMSUBCC F1, F2, F3, F4         // fc8110fd
    	FNMSUBS F1, F2, F3, F4          // ec8110fc
    	FNMSUBSCC F1, F2, F3, F4        // ec8110fd
    	FSEL F1, F2, F3, F4             // fc8110ee
    	FSELCC F1, F2, F3, F4           // fc8110ef
    	FABS F1, F2                     // fc400a10
    	FNABS F1, F2                    // fc400910
    	FABSCC F1, F2                   // fc400a11
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
  2. configure.py

        gcc_env = get_gcc_compiler(environ_cp)
        if gcc_env is not None:
    
          # Use gold linker if 'gcc' and if 'ppc64le'
          write_to_bazelrc('build --linkopt="-fuse-ld=gold"')
    
          # Get the linker version
          ld_version = run_shell([gcc_env, '-Wl,-version']).split()
    
          ld_version_int = convert_version_to_int(ld_version[3])
          if ld_version_int is None:
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  3. .bazelrc

    build:release_linux_base --copt=-Wno-error=array-parameter
    build:release_linux_base --copt=-Wno-error=unused-command-line-argument
    # Set lld as the linker.
    build:release_linux_base --linkopt="-fuse-ld=lld"
    build:release_linux_base --linkopt="-lm"
    
    # We have some invalid linker scripts in the build,
    # so we need to disable this check
    build:release_linux_base --linkopt=-Wl,--undefined-version
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
Back to top