****这个问题是关于从ndk-build *********中调用make trace选项
我正在尝试追踪一个make文件,但是我收到了一个错误。我的理解是ndk是shell,它调用make。所以我应该可以调用make开关;我可以做一些但跟踪选项不起作用:-(请参阅下面的输出;我做错了什么pelase?
@MadScientist - 我下载并安装了4.0版本。但我仍然看到同样的错误。任何人都可以在他们的系统上运行它,并发布他们使用的命令吗?我想我可能会触发交换机乱序或其他问题。如果我能看到一个工作实例,我可以从那里微调命令。也;我看了你为make-4.0更新发布的链接; debug也列在那里。 Sooo我不确定为什么或如何调试3.81;也许是它的早期版本。此外,我不确定为什么调试工作但不跟踪。我认为这是一个ndk问题。我做的是直接发布make,而且我不仅看到了跟踪工作;我没有看到提示我发布此问题的错误。这是一个投诉,所有与“:”和“::”一起使用。我将在这篇文章中添加一个ndk标签,希望有专业知识的人能够参与进来。我非常感谢你的帮助。
sansari@ubuntu:~/AndroidStudioProjects/ThirdNDK/app/src/main$ make -version
GNU Make 4.0
Built for x86_64-pc-linux-gnu
Copyright (C) 1988-2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
sansari@ubuntu:~/AndroidStudioProjects/ThirdNDK/app/src/main$ ~/ndk/android-ndk-r10d/ndk-build --trace -I /home/sansari/mytree2/TBT --just-print
/home/sansari/ndk/android-ndk-r10d/prebuilt/linux-x86_64/bin/make: unrecognized option '--trace'
Usage: make [options] [target] ...
Options:
-b, -m Ignored for compatibility.
-B, --always-make Unconditionally make all targets.
-C DIRECTORY, --directory=DIRECTORY
Change to DIRECTORY before doing anything.
-d Print lots of debugging information.
--debug[=FLAGS] Print various types of debugging information.
-e, --environment-overrides
Environment variables override makefiles.
-f FILE, --file=FILE, --makefile=FILE
Read FILE as a makefile.
-h, --help Print this message and exit.
-i, --ignore-errors Ignore errors from commands.
-I DIRECTORY, --include-dir=DIRECTORY
Search DIRECTORY for included makefiles.
-j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg.
-k, --keep-going Keep going when some targets can't be made.
-l [N], --load-average[=N], --max-load[=N]
Don't start multiple jobs unless load is below N.
-L, --check-symlink-times Use the latest mtime between symlinks and target.
-n, --just-print, --dry-run, --recon
Don't actually run any commands; just print them.
-o FILE, --old-file=FILE, --assume-old=FILE
Consider FILE to be very old and don't remake it.
-p, --print-data-base Print make's internal database.
-q, --question Run no commands; exit status says if up to date.
-r, --no-builtin-rules Disable the built-in implicit rules.
-R, --no-builtin-variables Disable the built-in variable settings.
-s, --silent, --quiet Don't echo commands.
-S, --no-keep-going, --stop
Turns off -k.
-t, --touch Touch targets instead of remaking them.
-v, --version Print the version number of make and exit.
-w, --print-directory Print the current directory.
--no-print-directory Turn off -w, even if it was turned on implicitly.
-W FILE, --what-if=FILE, --new-file=FILE, --assume-new=FILE
Consider FILE to be infinitely new.
--warn-undefined-variables Warn when an undefined variable is referenced.
This program built for x86_64-pc-linux-gnu
Report bugs to <bug-make@gnu.org>
sansari@ubuntu:~/AndroidStudioProjects/ThirdNDK/app/src/main$
@ Alex Cohn - 再次感谢。这解释了很多。我将首先考虑获得最新的ndk;然后尝试使用最新版本的make。对我来说一个突出的问题是我的本机C项目,我试图移植到jni中的项目与早期版本的ndk中的一个工具链编译。所以我现在得到“::”错误消息似乎表明它是由其他东西引起的。我怀疑这与我试图将C项目的make文件包含到我的Android.mk中有关。虽然我的Android.mk没有全部目标,但有可能暗示一个吗?我只是像报纸一样阅读制作手册;我不记得是否是这种情况。但是有很多隐含的规则。你有什么想法吗?
答案 0 :(得分:0)
很可能你使用的是旧版本的GNU make。 GNU中的--trace
标志was added制作版本4.0。
答案 1 :(得分:0)
Google在 ndk 包中使用GNU Make的自定义版本。您可以尝试使用下载的品牌
启动ndk-build
GNUMAKE=`which make` ndk-build
但构成 ndk 核心的.mk
文件与路径上的 make 之间可能存在一些轻微的不一致。