Mercurial > sdl-ios-xcode
comparison README.android @ 4975:6fbc7044f343
Added information about doing a clean build
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 12 Jan 2011 12:35:46 -0800 |
parents | 1cd0a891b69a |
children | 3811132c584f |
comparison
equal
deleted
inserted
replaced
4974:1cd0a891b69a | 4975:6fbc7044f343 |
---|---|
121 adb push local_file remote_path_and_file | 121 adb push local_file remote_path_and_file |
122 | 122 |
123 You can push files to the SD Card at /sdcard, for example: | 123 You can push files to the SD Card at /sdcard, for example: |
124 adb push moose.dat /sdcard/moose.dat | 124 adb push moose.dat /sdcard/moose.dat |
125 | 125 |
126 You can do a clean build with the following commands: | |
127 ndk-build clean | |
128 ndk-build | |
129 | |
126 You can see the complete command line that ndk-build is using by passing V=1 on the command line: | 130 You can see the complete command line that ndk-build is using by passing V=1 on the command line: |
127 ndk-build V=1 | 131 ndk-build V=1 |
128 | 132 |
129 If your application crashes in native code, you can use addr2line to convert the addresses in the stack trace to lines in your code. | 133 If your application crashes in native code, you can use addr2line to convert the addresses in the stack trace to lines in your code. |
130 | 134 |