Upgrade Boost to 1.72.0
This commit is contained in:
parent
379cb5c319
commit
c27aa1e40b
|
@ -20,6 +20,7 @@
|
||||||
* Fixed agent failures due to API changes in `is_within_distance_ahead()`
|
* Fixed agent failures due to API changes in `is_within_distance_ahead()`
|
||||||
* Fixed incorrect doppler velocity for RADAR sensor
|
* Fixed incorrect doppler velocity for RADAR sensor
|
||||||
* Fixed documentation links
|
* Fixed documentation links
|
||||||
|
* Upgraded Boost to 1.72.0
|
||||||
|
|
||||||
## CARLA 0.9.7
|
## CARLA 0.9.7
|
||||||
* Upgraded parameters of Unreal/CarlaUE4/Config/DefaultInput.ini to prevent mouse freeze
|
* Upgraded parameters of Unreal/CarlaUE4/Config/DefaultInput.ini to prevent mouse freeze
|
||||||
|
|
|
@ -28,7 +28,7 @@ Get and compile dependencies
|
||||||
|
|
||||||
* llvm-7.1 (libc++ and libc++abi)
|
* llvm-7.1 (libc++ and libc++abi)
|
||||||
* rpclib-2.2.1 (twice, with libstdc++ and libc++)
|
* rpclib-2.2.1 (twice, with libstdc++ and libc++)
|
||||||
* boost-1.69 (headers only)
|
* boost-1.72.0 (headers and boost_python for libstdc++)
|
||||||
* googletest-1.8.1 (with libc++)
|
* googletest-1.8.1 (with libc++)
|
||||||
|
|
||||||
#### LibCarla
|
#### LibCarla
|
||||||
|
|
|
@ -24,7 +24,7 @@ rem ============================================================================
|
||||||
rem -- Parse arguments ---------------------------------------------------------
|
rem -- Parse arguments ---------------------------------------------------------
|
||||||
rem ============================================================================
|
rem ============================================================================
|
||||||
|
|
||||||
set BOOST_VERSION=1.69.0
|
set BOOST_VERSION=1.72.0
|
||||||
set INSTALLERS_DIR=%ROOT_PATH%Util\InstallersWin\
|
set INSTALLERS_DIR=%ROOT_PATH%Util\InstallersWin\
|
||||||
set VERSION_FILE=%ROOT_PATH%Util\ContentVersions.txt
|
set VERSION_FILE=%ROOT_PATH%Util\ContentVersions.txt
|
||||||
set CONTENT_DIR=%ROOT_PATH%Unreal\CarlaUE4\Content\Carla
|
set CONTENT_DIR=%ROOT_PATH%Unreal\CarlaUE4\Content\Carla
|
||||||
|
|
|
@ -69,7 +69,7 @@ unset LLVM_BASENAME
|
||||||
# -- Get boost includes --------------------------------------------------------
|
# -- Get boost includes --------------------------------------------------------
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
|
||||||
BOOST_VERSION=1.69.0
|
BOOST_VERSION=1.72.0
|
||||||
BOOST_BASENAME="boost-${BOOST_VERSION}-${CXX_TAG}"
|
BOOST_BASENAME="boost-${BOOST_VERSION}-${CXX_TAG}"
|
||||||
|
|
||||||
BOOST_INCLUDE=${PWD}/${BOOST_BASENAME}-install/include
|
BOOST_INCLUDE=${PWD}/${BOOST_BASENAME}-install/include
|
||||||
|
|
Loading…
Reference in New Issue