-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Conditional jump or move depends on uninitialised value(s) #2089
Comments
Looks like it comes from within Could you do me a favor and checkout the Another example is this HTTP server using the v5 Sidenote: you have a memory leak, you
|
Thanks for you quick response. I checked out to the
When running |
The header is in
Then checkout the
Then build the example in the repository:
The project I linked to does exactly the same (without installing it system-wide) for a v5 Hope that helps |
Uhmm, good point. I now have successfully running this as latest commit. But I will try out the |
Great that it helped! The current re-write of what will become v5 is the first major one and it's necessary e.g. for improved and actual usable guidance. It also improves the If you want to give |
I check out again to the
I modified my |
I assume
do you see a line saying
From the error above it looks to me that the loader can not find
In this case, your loader does not look into
to update the shared library cache. If that does not work, then your loader does not look at
Note: another option would be to simply build a statically linked |
|
Definitely turn off alternatives, that's probably the most expensive one. You will probably only seeing improvements when doing a massive amount of queries. In that case, just play around with it a bit and profile! In case you're doing incremental queries you can get a hint which you have to provide for subsequent queries. This skips the geospatial lookup for locations for which you provide hints. |
Ok, thanks. And yes I am doing a massive amount of queries. I will close this issue, since everything is solved. |
This is the latest commit I have. I am running Ubuntu 14.04 LTS.
Valgrind is giving me the following error:
My code looks just like the
example/example.cpp
:What am I missing?
The text was updated successfully, but these errors were encountered: