2016-08-24 1 views
0

Androidスタジオのbuild.gradleのldFlags( ' - c')は何を意味するのか教えてください。build.gradleのldFlags( ' - c')の意味は何ですか?

例を参照してください。https://github.com/googlesamples/android-ndk/blob/a498a7809cb7c9ec576b95e797edc4e64777ea00/MoreTeapots/nativeactivity/build.gradle

+0

ご質問から、どんな研究をしても。私はあなたがそれを拡大することを提案し、いくつかのグーグルを試みる。 –

答えて

0

あなたが打ち鳴らすのLLVMコンパイラのヘルプを実行しますので、のような "打ち鳴らす++":

clang++ -help、あなたが渡すことができます可能なパラメータが表示されます:

OVERVIEW: clang LLVM compiler 

USAGE: clang++ [options] <inputs> 

OPTIONS: 
    -###     Print (but do not run) the commands to run 
for this compilation 
    --analyze    Run the static analyzer 
    -arcmt-migrate-emit-errors 
          Emit ARC errors even if the migrator can  fix them 
    -arcmt-migrate-report-output <value> 
          Output path for the plist report 
    --cuda-device-only  Do device-side CUDA compilation only 
    --cuda-host-only  Do host-side CUDA compilation only 
    --cuda-path=<value>  CUDA installation path 
    -cxx-isystem <directory> 
          Add directory to the C++ SYSTEM include   search path 
    -c      Only run preprocess, compile, and assemble steps 
    ... 
    ... 
    ... 

-cフラグの説明は次のとおりです。前処理のみを実行し、ステップをコンパイルし、アセンブルします

関連する問題