Skip to content
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

Update osrm_traffic_update.md #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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: 1 addition & 1 deletion osrm/doc/osrm_traffic_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ The from/to ids are OSM node IDs that are directly connected. To update the spee
tbb::task_scheduler_init init(1);
```

3. On Mac with XCode, I met issue related with osrm_update and osrm_store could not generate libosrm_store.a and libosrm_update.a, solve the issue by modifying CMakeLists.txt under osrm-backend
3. On Mac with XCode, I met issue related with osrm_update and osrm_store could not generate libosrm_store.a and libosrm_update.a, solve the issue by modifying CMakeLists.txt under osrm-backend[Shanjun: while I build those two sub-projects separately, I can generate those .a files]
```diff
-add_library(osrm_update $<TARGET_OBJECTS:UPDATER> $<TARGET_OBJECTS:MICROTAR> $<TARGET_OBJECTS:UTIL>)
-add_library(osrm_store $<TARGET_OBJECTS:STORAGE> $<TARGET_OBJECTS:MICROTAR> $<TARGET_OBJECTS:UTIL>)
Expand Down