代码之家  ›  专栏  ›  技术社区  ›  eipi10

构建R包导致R崩溃

  •  0
  • eipi10  · 技术社区  · 7 年前

    当我试图构建我创建的包时,我试图诊断是什么导致R崩溃,我不确定接下来要采取什么步骤。

    我最初使用RStudio和 devtools . 在编写了几个函数之后,我运行了 devtools::document() document() 运行时没有崩溃,但RStudio在之后崩溃 devtools::build() . 我重新打开了RStudio,这次 build() 运行时没有出现错误,我可以单击 Install and Restart 安装软件包。单击后 安装并重新启动 RStudio有时崩溃,有时不崩溃。

    build document 不使用RStudio直接运行R命令。我删除了 man 文件夹和 NAMESPACE 项目目录中的文件。然后,在将工作目录设置为包的目录后,我运行了 devtools::document() ,运行时没有出错,并生成 成年男子 文件夹和 命名空间 文件然后我跑了 devtools::build() 哪个撞坏了R。下面是撞坏消息。然而,当我重新启动R并运行时 生成() 同样,它运行时没有出错。然后我跑了 R CMD INSTALL

    我不确定下一步该采取什么措施。当我在R脚本中直接创建和使用它们时,包中的所有函数都会正常运行。里面有什么东西吗 roxygen 导致崩溃的一个或多个函数的文档注释?

    如果知道可能有帮助,该包包括一个文件 imports.r 具有以下导入:

    #' @importFrom fst read.fst
    #' @importFrom lubridate today
    #' @import readr
    #' @import readxl
    #' @import dplyr
    NULL
    

    我可以提供其他信息,例如软件包的详细信息和代码、崩溃日志等。我在运行Sierra(10.12.6)、R 3.4.2、devtools 1.13.3.9000、roxygen2 6.0.1和RStudio 1.1.383的Macbook Pro上。

    这是R在跑步后发出的撞车信息 生成() 第一次:

     *** caught illegal operation ***
    address 0x7fff9f32eae4, cause 'illegal opcode'
    
    Traceback:
     1: process_initialize(self, private, command, args, commandline,     stdout, stderr, cleanup, echo_cmd, windows_verbatim_args,     windows_hide_window)
     2: .subset2(public_bind_env, "initialize")(...)
     3: process$new(command, args, commandline, echo_cmd = echo_cmd,     windows_verbatim_args = windows_verbatim_args, windows_hide_window = windows_hide_window,     stdout = "|", stderr = "|")
     4: run(bin, args = real_cmdargs, stdout_line_callback = real_callback(stdout),     stderr_line_callback = real_callback(stderr), stdout_callback = real_block_callback,     stderr_callback = real_block_callback, echo_cmd = echo, echo = show,     spinner = spinner, error_on_status = fail_on_status, timeout = timeout)
     5: force(code)
     6: with_envvar(env, run(bin, args = real_cmdargs, stdout_line_callback = real_callback(stdout),     stderr_line_callback = real_callback(stderr), stdout_callback = real_block_callback,     stderr_callback = real_block_callback, echo_cmd = echo, echo = show,     spinner = spinner, error_on_status = fail_on_status, timeout = timeout))
     7: eval(substitute(expr), data, enclos = parent.frame())
     8: eval(substitute(expr), data, enclos = parent.frame())
     9: with.default(options, with_envvar(env, run(bin, args = real_cmdargs,     stdout_line_callback = real_callback(stdout), stderr_line_callback = real_callback(stderr),     stdout_callback = real_block_callback, stderr_callback = real_block_callback,     echo_cmd = echo, echo = show, spinner = spinner, error_on_status = fail_on_status,     timeout = timeout)))
    10: with(options, with_envvar(env, run(bin, args = real_cmdargs,     stdout_line_callback = real_callback(stdout), stderr_line_callback = real_callback(stderr),     stdout_callback = real_block_callback, stderr_callback = real_block_callback,     echo_cmd = echo, echo = show, spinner = spinner, error_on_status = fail_on_status,     timeout = timeout)))
    11: run_r(options)
    12: callr::rcmd_safe(..., env = env)
    13: with_build_tools(callr::rcmd_safe(..., env = env), required = required)
    14: rcmd_build_tools(cmd, c(path, args), wd = out_dir, show = !quiet,     echo = !quiet, fail_on_status = TRUE, required = FALSE)
    15: force(code)
    16: withr::with_temp_libpaths(rcmd_build_tools(cmd, c(path, args),     wd = out_dir, show = !quiet, echo = !quiet, fail_on_status = TRUE,     required = FALSE))
    17: pkgbuild::build(path = path, dest_path = dest_path, binary = binary,     vignettes = vignettes, manual = manual, args = args, quiet = quiet,     ...)
    18: devtools::build()
    
    Possible actions:
    1: abort (with core dump, if enabled)
    2: normal R exit
    3: exit R without saving workspace
    4: exit R saving workspace
    Selection: 
    
    1 回复  |  直到 7 年前
        1
  •  0
  •   eipi10    7 年前

    最后一个例子是:Marcus Klik fst package ,能够跟踪并解决问题。这个 github issue page 有详细信息。向下滚动到帖子末尾附近的马库斯·克利克的评论,以获取关键发现。