Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for LIBPATH (0.11 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/ArchitectureDescriptorBuilder.java

        final Architecture architecture;
        final String binPath;
        final String libPath;
        final String asmFilename;
    
        ArchitectureDescriptorBuilder(String architecture, String binPath, String libPath, String asmFilename) {
            this.binPath = binPath;
            this.libPath = libPath;
            this.asmFilename = asmFilename;
            this.architecture = Architectures.forInput(architecture);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/reproduciblebuilds_test.go

    	scenarios := []struct {
    		tag     string
    		args    string
    		libpath string
    	}{
    		{tag: "serial", args: "-c=1"},
    		{tag: "concurrent", args: "-c=2"}}
    
    	tmpdir := t.TempDir()
    
    	src := filepath.Join("testdata", "reproducible", "issue38068.go")
    	for i := range scenarios {
    		s := &scenarios[i]
    		s.libpath = filepath.Join(tmpdir, s.tag+".a")
    		// Note: use of "-p" required in order for DWARF to be generated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            if (context == null) {
                return new File[0];
            }
            final String libPath = context.getRealPath("/WEB-INF/lib");
            if (StringUtil.isBlank(libPath)) {
                return new File[0];
            }
            final File libDir = new File(libPath);
            if (!libDir.exists()) {
                return new File[0];
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/nm/nm_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(tmpdir)
    
    	gopath := filepath.Join(tmpdir, "gopath")
    	libpath := filepath.Join(gopath, "src", "mylib")
    
    	err = os.MkdirAll(libpath, 0777)
    	if err != nil {
    		t.Fatal(err)
    	}
    	src := filepath.Join(libpath, "a.go")
    	file, err := os.Create(src)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 23:32:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testfortran/fortran_test.go

    		switch runtime.GOOS {
    		case "darwin":
    			libExt = "dylib"
    		case "aix":
    			libExt = "a"
    		}
    		libPath, err := exec.Command(fc, append([]string{"-print-file-name=libgfortran." + libExt}, fcExtra...)...).CombinedOutput()
    		if err != nil {
    			t.Errorf("error invoking %s: %s", fc, err)
    		}
    		libDir := filepath.Dir(string(libPath))
    		cgoLDFlags := os.Getenv("CGO_LDFLAGS")
    		cgoLDFlags += " -L " + libDir
    		if runtime.GOOS != "aix" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 01:29:16 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/CommonToolChainIntegrationTest.groovy

                    def librarySearchPath = 'build/libs/hello/static'
                    def libraryName = 'hello'
                    if (toolChain in VisualCpp) {
                        linker.args "/LIBPATH:\${librarySearchPath}", "\${libraryName}.lib"
                    } else {
                        linker.args "-L\${librarySearchPath}", "-l\${libraryName}"
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/LinkExeLinker.java

                    args.add("/DLL");
                    args.add("/IMPLIB:" + sharedLibSpec.getImportLibrary().getAbsolutePath());
                }
                for (File pathEntry : spec.getLibraryPath()) {
                    args.add("/LIBPATH:" + pathEntry.getAbsolutePath());
                }
                for (File file : spec.getObjectFiles()) {
                    args.add(file.getAbsolutePath());
                }
                for (File file : spec.getLibraries()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    	}
    	for _, libdir := range ctxt.Libdir {
    		libpath := filepath.Join(libdir, shlib)
    		if _, err := os.Stat(libpath); err == nil {
    			return libpath
    		}
    	}
    	Errorf(nil, "cannot find shared library: %s", shlib)
    	return ""
    }
    
    func ldshlibsyms(ctxt *Link, shlib string) {
    	var libpath string
    	if filepath.IsAbs(shlib) {
    		libpath = shlib
    		shlib = filepath.Base(shlib)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/internal/xcoff/file.go

    	if _, err := io.ReadFull(s.sr, table); err != nil {
    		return nil, err
    	}
    
    	offset := 0
    	// First import file ID is the default LIBPATH value
    	libpath := cstring(table[offset:])
    	f.LibraryPaths = strings.Split(libpath, ":")
    	offset += len(libpath) + 3 // 3 null bytes
    	all := make([]string, 0)
    	for i := 1; i < int(nimpid); i++ {
    		impidpath := cstring(table[offset:])
    		offset += len(impidpath) + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

            invocationContext.addPath(sdk.getPath());
            // Clear environment variables that might effect cl.exe & link.exe
            clearEnvironmentVars(invocationContext, "INCLUDE", "CL", "LIBPATH", "LINK", "LIB");
    
            invocationContext.setArgAction(commandLineToolConfiguration.getArgAction());
            return invocationContext;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
Back to top