diff options
| author | Eric Fiselier <eric@efcs.ca> | 2019-03-21 00:04:31 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2019-03-21 00:04:31 +0000 |
| commit | f1d87f8b4c430d72e7ab07e13508336a7841c3e6 (patch) | |
| tree | 7c8a8cc30ee3f7518c734cf8204dd57fad8934bf /libcxx/docs | |
| parent | 49fc2655819fef5b733ee5fda5c10b434150ebf5 (diff) | |
| download | bcm5719-llvm-f1d87f8b4c430d72e7ab07e13508336a7841c3e6.tar.gz bcm5719-llvm-f1d87f8b4c430d72e7ab07e13508336a7841c3e6.zip | |
Allow disabling of filesystem library.
Summary: Filesystem doesn't work on Windows, so we need a mechanism to turn it off for the time being.
Reviewers: ldionne, serge-sans-paille, EricWF
Reviewed By: EricWF
Subscribers: mstorsjo, mgorny, christof, jdoerfert, libcxx-commits
Differential Revision: https://reviews.llvm.org/D59619
llvm-svn: 356633
Diffstat (limited to 'libcxx/docs')
| -rw-r--r-- | libcxx/docs/BuildingLibcxx.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libcxx/docs/BuildingLibcxx.rst b/libcxx/docs/BuildingLibcxx.rst index cb00b89edc1..fb22a1df928 100644 --- a/libcxx/docs/BuildingLibcxx.rst +++ b/libcxx/docs/BuildingLibcxx.rst @@ -206,6 +206,13 @@ libc++ specific options libraries that may be used in with other shared libraries that use different C++ library. We want to avoid avoid exporting any libc++ symbols in that case. +.. option:: LIBCXX_ENABLE_FILESYSTEM:BOOL + + **Default**: ``ON`` except on Windows. + + This option can be used to enable or disable the filesystem components on + platforms that may not support them. For example on Windows. + .. _libc++experimental options: libc++experimental Specific Options |

