mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-17 21:35:07 +00:00
Adjust documentation of GetBytecodeLibraryPaths after removing LLVMGCCDIR
support from it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18972 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
88422fee66
commit
2d01af2c31
@ -99,10 +99,10 @@ namespace sys {
|
|||||||
|
|
||||||
/// Construct a vector of sys::Path that contains the "standard" bytecode
|
/// Construct a vector of sys::Path that contains the "standard" bytecode
|
||||||
/// library paths suitable for linking into an llvm program. This function
|
/// library paths suitable for linking into an llvm program. This function
|
||||||
/// *must* return the value of LLVM_LIB_SEARCH_PATH as well as the values
|
/// *must* return the value of LLVM_LIB_SEARCH_PATH as well as the value
|
||||||
/// of LLVM_LIBDIR and LLVMGCCDIR/lib (if --with-llvmgccdir was specified
|
/// of LLVM_LIBDIR. It also must provide the System library paths as
|
||||||
/// when LLVM was configured). It also must provide the
|
/// returned by GetSystemLibraryPaths.
|
||||||
/// System library paths as returned by GetSystemLibraryPaths.
|
/// @see GetSystemLibraryPaths
|
||||||
/// @brief Construct a list of directories in which bytecode could be
|
/// @brief Construct a list of directories in which bytecode could be
|
||||||
/// found.
|
/// found.
|
||||||
static void GetBytecodeLibraryPaths(std::vector<sys::Path>& Paths);
|
static void GetBytecodeLibraryPaths(std::vector<sys::Path>& Paths);
|
||||||
@ -353,6 +353,27 @@ namespace sys {
|
|||||||
/// @brief Build a list of directory's contents.
|
/// @brief Build a list of directory's contents.
|
||||||
bool getDirectoryContents(std::set<Path>& paths) const;
|
bool getDirectoryContents(std::set<Path>& paths) const;
|
||||||
|
|
||||||
|
/// This method attempts to destroy the directory named by the last in
|
||||||
|
/// the Path name. If \p remove_contents is false, an attempt will be
|
||||||
|
/// made to remove just the directory that this Path object refers to
|
||||||
|
/// (the final Path component). If \p remove_contents is true, an attempt
|
||||||
|
/// will be made to remove the entire contents of the directory,
|
||||||
|
/// recursively.
|
||||||
|
/// @param destroy_contents Indicates whether the contents of a destroyed
|
||||||
|
/// directory should also be destroyed (recursively).
|
||||||
|
/// @returns false if the Path does not refer to a directory, true
|
||||||
|
/// otherwise.
|
||||||
|
/// @throws std::string if there is an error.
|
||||||
|
/// @brief Removes the file or directory from the filesystem.
|
||||||
|
bool destroyDirectory( bool destroy_contents = false ) const;
|
||||||
|
|
||||||
|
/// This method attempts to destroy the file named by the last item in the
|
||||||
|
/// Path name.
|
||||||
|
/// @returns false if the Path does not refer to a file, true otherwise.
|
||||||
|
/// @throws std::string if there is an error.
|
||||||
|
/// @brief Destroy the file this Path refers to.
|
||||||
|
bool destroyFile() const;
|
||||||
|
|
||||||
/// Obtain a 'C' string for the path name.
|
/// Obtain a 'C' string for the path name.
|
||||||
/// @returns a 'C' string containing the path name.
|
/// @returns a 'C' string containing the path name.
|
||||||
/// @brief Returns the path as a C string.
|
/// @brief Returns the path as a C string.
|
||||||
@ -531,26 +552,6 @@ namespace sys {
|
|||||||
/// @brief Create a unique temporary file
|
/// @brief Create a unique temporary file
|
||||||
bool createTemporaryFile(bool reuse_current = false);
|
bool createTemporaryFile(bool reuse_current = false);
|
||||||
|
|
||||||
/// This method attempts to destroy the directory named by the last in
|
|
||||||
/// the Path name. If \p remove_contents is false, an attempt will be
|
|
||||||
/// made to remove just the directory that this Path object refers to
|
|
||||||
/// (the final Path component). If \p remove_contents is true, an attempt
|
|
||||||
/// will be made to remove the entire contents of the directory,
|
|
||||||
/// recursively.
|
|
||||||
/// @param destroy_contents Indicates whether the contents of a destroyed
|
|
||||||
/// directory should also be destroyed (recursively).
|
|
||||||
/// @returns false if the Path does not refer to a directory, true
|
|
||||||
/// otherwise.
|
|
||||||
/// @throws std::string if there is an error.
|
|
||||||
/// @brief Removes the file or directory from the filesystem.
|
|
||||||
bool destroyDirectory( bool destroy_contents = false );
|
|
||||||
|
|
||||||
/// This method attempts to destroy the file named by the last item in the
|
|
||||||
/// Path name.
|
|
||||||
/// @returns false if the Path does not refer to a file, true otherwise.
|
|
||||||
/// @throws std::string if there is an error.
|
|
||||||
/// @brief Destroy the file this Path refers to.
|
|
||||||
bool destroyFile();
|
|
||||||
|
|
||||||
/// This method renames the file referenced by \p this as \p newName. Both
|
/// This method renames the file referenced by \p this as \p newName. Both
|
||||||
/// files must exist before making this call.
|
/// files must exist before making this call.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user