Jun Aruga 019cbded90 mkmf: Add a configure option to set verbose mode (V=1 or 0) in mkmf.rb.
Note this change is only for `configure.ac`, not for Windows using
`win32/configure.bat`.

```
$ ./configure --help | grep mkmf
  --enable-mkmf-verbose   enable verbose in mkmf
```

Run the following command to enable the mkmf verbose mode.

```
$ ./configure --enable-mkmf-verbose
$ grep MKMF_VERBOSE config.status
S["MKMF_VERBOSE"]="1"
```

In this mkmf verbose mode, when compiling a native extension, the
`rake compile` prints the compiling commands such as
"gcc -I. <...> path/to/file" instead of "compiling path/to/file".

```
$ git clone https://github.com/deivid-rodriguez/byebug.git
$ cd byebug
$ bundle install --standalone
$ bundle exec rake compile
...
gcc -I. <...> path/to/file
...
```
2022-05-12 12:36:10 +02:00
..
2021-12-18 08:38:58 +09:00
2021-12-24 23:20:30 +09:00
2022-03-14 14:40:28 +09:00
2022-05-09 18:20:31 +09:00
2021-12-09 19:48:22 +09:00
2022-01-12 21:16:01 +09:00
2021-11-16 20:55:33 +09:00
2022-03-17 10:11:38 +09:00
2022-01-03 22:33:38 +09:00
2021-12-24 23:20:30 +09:00
2022-02-10 17:18:05 +09:00
2022-04-01 00:18:36 +09:00
2021-12-20 12:44:31 +09:00
2022-04-28 19:08:49 +09:00
2022-04-22 11:59:54 +09:00