diff options
author | Cary Coutant <ccoutant@google.com> | 2012-06-06 22:12:47 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2012-06-06 22:12:47 +0000 |
commit | 7c0640fa36c37d0e17b1db3ab9b1c66792f8a5fb (patch) | |
tree | 2bad952e9bfe9eda450d7e2082215e2c62fd5c5a /gold/configure | |
parent | 8fe6640e153236e68f3531b8d8151be2f8c61193 (diff) | |
download | gdb-7c0640fa36c37d0e17b1db3ab9b1c66792f8a5fb.zip gdb-7c0640fa36c37d0e17b1db3ab9b1c66792f8a5fb.tar.gz gdb-7c0640fa36c37d0e17b1db3ab9b1c66792f8a5fb.tar.bz2 |
gold/
* configure.ac: Add check for fallocate.
* configure: Regenerate.
* config.in: Regenerate.
* options.h (class General_options): Add --mmap-output-file and
--posix-fallocate options.
* output.cc: (posix_fallocate): Remove; replace with...
(gold_fallocate): New function.
(Output_file::map_no_anonymous): Call gold_fallocate.
(Output_file::map): Check --mmap-output-file option.
Diffstat (limited to 'gold/configure')
-rwxr-xr-x | gold/configure | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gold/configure b/gold/configure index dec02dc..b84234a 100755 --- a/gold/configure +++ b/gold/configure @@ -3222,6 +3222,7 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' ac_config_headers="$ac_config_headers config.h:config.in" +# PR 14072 @@ -7123,7 +7124,7 @@ fi done -for ac_func in mallinfo posix_fallocate readv sysconf times +for ac_func in mallinfo posix_fallocate fallocate readv sysconf times do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_cxx_check_func "$LINENO" "$ac_func" "$as_ac_var" |