diff options
author | lloyd <[email protected]> | 2014-01-20 18:33:04 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-01-20 18:33:04 +0000 |
commit | 0e3cff7610f5a3c7ea1ec7a4b328f3fa864277c7 (patch) | |
tree | a38915a0e98f5617550bd797f531f07532f2ee46 | |
parent | f8ff9cf9ec97a63d6947d80209fa72cff23cadf6 (diff) |
Fix binary names
-rw-r--r-- | doc/manual/building.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/manual/building.rst b/doc/manual/building.rst index 6c9cfba3c..07468fe6c 100644 --- a/doc/manual/building.rst +++ b/doc/manual/building.rst @@ -139,7 +139,7 @@ self-test program:: $ VERSION=1.11.11 # or whatever the current version is $ install_name_tool -change $(otool -X -D libbotan-$VERSION.dylib) \ - $PWD/libbotan-$VERSION.dylib check + $PWD/libbotan-$VERSION.dylib botan-test Building Universal Binaries &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& @@ -198,15 +198,15 @@ Edit the makefile and change AR (around line 30) to:: You may also want to edit LIB_OPT to use -Os to optimize for size. -Now build as normal with ``make check``. Confirm the binary is -compiled for both architectures with:: +Now build as normal with ``make``. Confirm the binaries are compiled +for both architectures with:: - $ xcrun -sdk iphoneos lipo -info check - Architectures in the fat file: check are: armv7 armv7s + $ xcrun -sdk iphoneos lipo -info botan + Architectures in the fat file: botan are: armv7 armv7s Now sign the test application with:: - $ codesign -fs "Your Name" check + $ codesign -fs "Your Name" botan-test which should allow you to run the library self tests on a jailbroken device. |