Skip to content

el capitan dylib fix #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ make
cp *.jar ../..
cp *.dylib ../.. || cp *.so ../..
cd ../..
otool -L libz3java.dylib #this should show "libz3.dylib" with some version info behind it
install_name_tool -change libz3.dylib `pwd`/libz3.dylib libz3java.dylib
```

(3) In order to use the Android clients or compile/run the tests, you'll need a Droidel-processed Android framework JAR in lib/: `cp ../droidel/stubs/out/droidel_android-4.4.2_r1.jar lib` (assuming `droidel` and `hopper` are sibling directories).
Expand Down
3 changes: 2 additions & 1 deletion hopper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ LIB=$(pwd)/lib
export LD_LIBRARY_PATH=$LIB:$LD_LIBRARY_PATH
export DYLD_LIBRARY_PATH=$LIB:$DYLD_LIBRARY_PATH

java -Xmx8g -jar $JAR $@
echo $DYLD_LIBRARY_PATH
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this needed?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't believe so. I wouldn't merge this yet though since I don't know if
it breaks installation on Linux or older osx.
On May 18, 2016 6:31 AM, "Sam Blackshear" [email protected] wrote:

In hopper.sh #4 (comment)
:

@@ -11,4 +11,5 @@ LIB=$(pwd)/lib
export LD_LIBRARY_PATH=$LIB:$LD_LIBRARY_PATH
export DYLD_LIBRARY_PATH=$LIB:$DYLD_LIBRARY_PATH

-java -Xmx8g -jar $JAR $@
+echo $DYLD_LIBRARY_PATH

Is this needed?


You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub
https://github.com/cuplv/hopper/pull/4/files/97fa46c84f318315a1b757e7dd89d79729417909#r63693610

java -Djava.library.path=$LIB -Xmx8g -jar $JAR $@