首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何将OCAMLOPTFLAGS添加到Oasis?

如何将OCAMLOPTFLAGS添加到Oasis?
EN

Stack Overflow用户
提问于 2017-09-19 16:54:15
回答 1查看 281关注 0票数 2

我想在我的_oasis文件中添加一些标志(S,inline 20,nodynlink),但是我得到了一个编译错误:

代码语言:javascript
复制
AlphaFeatures: ocamlbuild_more_args
XOCamlbuildExtraArgs: "-cflags '-S -inline 20'"

我想知道你怎么才能添加这些。

相当长的错误:

代码语言:javascript
复制
node:dir user$ make
ocaml setup.ml -build
/Users/user/.opam/system/bin/ocamlbuild: unknown option '-inline'.
Usage /Users/user/.opam/system/bin/ocamlbuild [options] <target>
  -version                    Display the version
  --version                   same as -version
  -vnum                       Display the version number
  --vnum                      same as -vnum
  -quiet                      Make as quiet as possible
  -verbose <level>            Set the verbosity level on a scale from 0 to 8 (included)
  -documentation              Show rules and flags
  -log <file>                 Set log file
  -no-log                     No log file
  -clean                      Remove build directory and other files, then exit
  -r                          Traverse directories by default (true: traverse)
  -I <path>                   Add to include directories
  -Is <path,...>              (same as above, but accepts a (comma or blank)-separated list)
  -X <path>                   Directory to ignore
  -Xs <path,...>              (idem)
  -lib <flag>                 Link to this ocaml library
  -libs <flag,...>            (idem)
  -mod <module>               Link to this ocaml module
  -mods <module,...>          (idem)
  -pkg <package>              Link to this ocaml findlib package
  -pkgs <package,...>         (idem)
  -package <package>          (idem)
  -syntax <syntax>            Specify syntax using ocamlfind
  -lflag <flag>               Add to ocamlc link flags
  -lflags <flag,...>          (idem)
  -cflag <flag>               Add to ocamlc compile flags
  -cflags <flag,...>          (idem)
  -docflag <flag>             Add to ocamldoc flags
  -docflags <flag,...>        (idem)
  -yaccflag <flag>            Add to ocamlyacc flags
  -yaccflags <flag,...>       (idem)
  -lexflag <flag>             Add to ocamllex flags
  -lexflags <flag,...>        (idem)
  -ppflag <flag>              Add to ocaml preprocessing flags
  -pp <flag,...>              (idem)
  -tag <tag>                  Add to default tags
  -tags <tag,...>             (idem)
  -plugin-tag <tag>           Use this tag when compiling the myocamlbuild.ml plugin
  -plugin-tags <tag,...>      (idem)
  -tag-line <tag>             Use this line of tags (as in _tags)
  -show-tags <path>           Show tags that applies on that pathname
  -ignore <module,...>        Don't try to build these modules
  -no-links                   Don't make links of produced final targets
  -no-skip                    Don't skip modules that are requested by ocamldep but cannot be built
  -no-hygiene                 Don't apply sanity-check rules
  -no-plugin                  Don't build myocamlbuild.ml
  -no-stdlib                  Don't ignore stdlib modules
  -dont-catch-errors          Don't catch and display exceptions (useful to display the call stack)
  -just-plugin                Just build myocamlbuild.ml
  -byte-plugin                Don't use a native plugin but bytecode
  -plugin-option              Use the option only when plugin is run
  -sanitization-script        Change the file name for the generated sanitization script
  -no-sanitize                Do not generate sanitization script
  -nothing-should-be-rebuilt  Fail if something needs to be rebuilt
  -classic-display            Display executed commands the old-fashioned way
  -use-menhir                 Use menhir instead of ocamlyacc
  -use-jocaml                 Use jocaml compilers instead of ocaml ones
  -use-ocamlfind              Use the 'ocamlfind' wrapper instead of using Findlib directly to determine command-line arguments. Use -no-ocamlfind to disable. Implies -plugin-use-ocamlfind.
  -no-ocamlfind               Don't use ocamlfind. Implies -plugin-no-ocamlfind.
  -plugin-use-ocamlfind       Use the 'ocamlfind' wrapper for building myocamlbuild.ml
  -plugin-no-ocamlfind        Don't use ocamlfind for building myocamlbuild.ml
  -toolchain <toolchain>      Set the Findlib toolchain to use. The default toolchain is always used for building myocamlbuild.ml.
  -j <N>                      Allow N jobs at once (0 for unlimited)
  -build-dir <path>           Set build directory (implies no-links)
  -install-lib-dir <path>     Set the install library directory
  -install-bin-dir <path>     Set the install binary directory
  -where                      Display the install library directory
  -which <command>            Display path to the tool command
  -ocamlc <command>           Set the OCaml bytecode compiler
  -plugin-ocamlc <command>    Set the OCaml bytecode compiler used when building myocamlbuild.ml (only)
  -ocamlopt <command>         Set the OCaml native compiler
  -plugin-ocamlopt <command>  Set the OCaml native compiler used when building myocamlbuild.ml (only)
  -ocamldep <command>         Set the OCaml dependency tool
  -ocamldoc <command>         Set the OCaml documentation generator
  -ocamlyacc <command>        Set the ocamlyacc tool
  -menhir <command>           Set the menhir tool (use it after -use-menhir)
  -ocamllex <command>         Set the ocamllex tool
  -ocamlmklib <command>       Set the ocamlmklib tool
  -ocamlmktop <command>       Set the ocamlmktop tool
  -ocamlrun <command>         Set the ocamlrun tool
  --                          Stop argument processing, remaining arguments are given to the user program
  -help                       Display this list of options
  --help                      Display this list of options

E: Failure("Command ''/Users/user/.opam/system/bin/ocamlbuild' src/main.native -cflags -S -inline 20 -tag debug' terminated with error code 1")
make: *** [build] Error 1
EN

回答 1

Stack Overflow用户

发布于 2017-09-20 23:32:28

-cflags选项接受一个逗号分隔的选项列表,并将其传递给ocamlc编译器。因此,在ocamlbuild' src/main.native -cflags -S -inline 20中,只有-S选项被传递给ocamlc,而-inline20则由ocamlbuild本身获取。因此,将多个选项传递给ocamlc的正确方法是:

代码语言:javascript
复制
ocamlbuild -cflags -S,-inline,20 x.byte

但是,这也会失败,因为ocamlc不识别-cflags-inline选项,因为它们是ocamlopt的选项。OCaml有两个编译器-一个叫做ocamlc,它产生字节码,另一个是ocamlopt,它产生本机代码。虽然它们有一些共同的选项,但其中一些绝对不是共享的。例如,字节码编译器不能发出程序集。

要将选项传递给ocamlopt,可以使用_oasis中的NativeOpt字段或使用_tags文件中的参数化标记(后者对于控制flambda很有用)。查看ocamlbuild -documentation以获取实际识别的标记集。

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/46296015

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档