Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: bruntib <[email protected]>
  • Loading branch information
dkrupp and bruntib authored Aug 15, 2024
1 parent 402acd2 commit 40104de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion analyzer/tools/build-logger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Set the following environment variables:
~~~~~~~
export LD_PRELOAD=ldlogger.so
export LD_LIBRARY_PATH=`pwd`/build/lib:$LD_LIBRARY_PATH
export CC_LOGGER_GCC_LIKE="gcc:g++:clang:clang++:cc:c++"
export CC_LOGGER_GCC_LIKE="gcc:g++:clang:clang++:/cc:c++"
# The output compilation JSON file.
export CC_LOGGER_FILE=`pwd`/compilation.json
# Log linker build actions to the JSON file. Optional. Default: false
Expand Down
2 changes: 1 addition & 1 deletion analyzer/tools/build-logger/tests/unit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def get_envvars(self) -> Mapping[str, str]:
"PATH": os.getenv("PATH"),
"LD_PRELOAD": "ldlogger.so",
"LD_LIBRARY_PATH": os.path.join(LOGGER_DIR, "lib"),
"CC_LOGGER_GCC_LIKE": "gcc:g++:clang:clang++:cc:c++",
"CC_LOGGER_GCC_LIKE": "gcc:g++:clang:clang++:/cc:c++",
"CC_LOGGER_FILE": self.logger_file,
"CC_LOGGER_DEBUG_FILE": self.logger_debug_file,
}
Expand Down

0 comments on commit 40104de

Please sign in to comment.