Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Cabal/ReplOptions.hs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ options = [
, Option "libdir" Nothing (Argument "DIR") "installation directory for libraries"
, Option "libsubdir" Nothing (Argument "DIR") "subdirectory of libdir in which libs are installed"
, Option "dynlibdir" Nothing (Argument "DIR") "installation directory for dynamic libraries"
, Option "bytecodelibdir" Nothing (Argument "DIR") "installation directory for bytecode libraries"
, Option "libexecdir" Nothing (Argument "DIR") "installation directory for program executables"
, Option "libexecsubdir" Nothing (Argument "DIR") "subdirectory of libexecdir in which private executables are installed"
, Option "datadir" Nothing (Argument "DIR") "installation directory for read-only data"
Expand All @@ -50,6 +51,8 @@ options = [
, Option "disable-shared" Nothing NoArgument "Disable Shared library"
, Option "enable-static" Nothing NoArgument "Enable Static library"
, Option "disable-static" Nothing NoArgument "Disable Static library"
, Option "enable-library-bytecode" Nothing NoArgument "Enable Bytecode library"
, Option "disable-library-bytecode" Nothing NoArgument "Disable Bytecode library"
, Option "enable-executable-dynamic" Nothing NoArgument "Enable Executable dynamic linking"
, Option "disable-executable-dynamic" Nothing NoArgument "Disable Executable dynamic linking"
, Option "enable-executable-static" Nothing NoArgument "Enable Executable fully static linking"
Expand Down Expand Up @@ -184,6 +187,7 @@ options = [
, Option "project-dir" Nothing (Argument "DIR") "Set the path of the project directory"
, Option "project-file" Nothing (Argument "FILE") "Set the path of the cabal.project file (relative to the project directory when relative)"
, Option "ignore-project" (Just 'z') NoArgument "Ignore local project configuration (unless --project-dir or --project-file is also set)"
, Option "project-file-parser" Nothing (Argument "PARSER") "Set the parser to use for the project file"
, Option "repl-no-load" Nothing NoArgument "Disable loading of project modules at REPL startup."
, Option "repl-options" Nothing (Argument "FLAG") "Use the option(s) for the repl"
, Option "repl-multi-file" Nothing (Argument "DIR") "Write repl options to this directory rather than starting repl mode"
Expand Down
Loading