Package com.oracle.truffle.r.runtime.RPlatform

Examples of com.oracle.truffle.r.runtime.RPlatform.OSInfo


     */
    @SlowPath
    private static void loadLibrary() {
        String rHome = REnvVars.rHome();
        String packageName = "com.oracle.truffle.r.native";
        OSInfo osInfo = RPlatform.getOSInfo();
        Path path = FileSystems.getDefault().getPath(rHome, packageName, "builtinlibs", "lib", osInfo.osSubDir, "librfficall." + osInfo.libExt);
        try {
            DLL.load(path.toString(), FORCE_RTLD_GLOBAL, false);
        } catch (DLLException ex) {
            throw RError.error((SourceSection) null, ex);
View Full Code Here

TOP

Related Classes of com.oracle.truffle.r.runtime.RPlatform.OSInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.