Skip to content

Commit

Permalink
lo: update clang notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Miklos Vajna committed Nov 18, 2015
1 parent e783f8f commit 6cba1a0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions libreoffice/clang.txt
Expand Up @@ -3,14 +3,16 @@
Detect unprefixed members in a whole module:

----
make -sr -j8 COMPILER_EXTERNAL_TOOL=1 CCACHE_PREFIX=find-unprefixed-members-wrapper RENAME_ARGS="-class-prefix=Sw" FORCE_COMPILE_ALL=1
make -sr -j8 COMPILER_EXTERNAL_TOOL=1 CCACHE_PREFIX=find-unprefixed-members-wrapper-vmiklos RENAME_ARGS="-class-prefix=Sw" FORCE_COMPILE_ALL=1
----

(The -vmiklos version is the same as the rename wrapper, just s/rename/find-unprefixed-members/.)

Detect unprefixed members for a class:

----
make -sr -j8 COMPILER_EXTERNAL_TOOL=1 CCACHE_PREFIX=find-unprefixed-members-wrapper RENAME_ARGS="-class-name=SdrDragView"
make build-nocheck COMPILER_EXTERNAL_TOOL=1 CCACHE_PREFIX=find-unprefixed-members-wrapper RENAME_ARGS="-class-name=SdrDragView"
make -sr -j8 COMPILER_EXTERNAL_TOOL=1 CCACHE_PREFIX=find-unprefixed-members-wrapper-vmiklos RENAME_ARGS="-class-name=SdrDragView"
make build-nocheck COMPILER_EXTERNAL_TOOL=1 CCACHE_PREFIX=find-unprefixed-members-wrapper-vmiklos RENAME_ARGS="-class-name=SdrDragView"
----

Rename them:
Expand Down

0 comments on commit 6cba1a0

Please sign in to comment.