Merge branch 'dev' of https://github.com/carla-simulator/carla into dev
This commit is contained in:
commit
b86b1997fc
Binary file not shown.
Binary file not shown.
|
@ -30,9 +30,10 @@ if os.name == "nt":
|
|||
editor_path = "%s/Engine/Binaries/%s/UE4Editor" % (ue4_path, sys_name)
|
||||
command = [editor_path, uproject_path, run]
|
||||
command.extend(arguments)
|
||||
full_command = editor_path + " " + uproject_path + " " + run + " " + arguments
|
||||
print("Commandlet:", command)
|
||||
print("Arguments:", arguments)
|
||||
subprocess.check_call(command, shell=True)
|
||||
subprocess.check_call(full_command, shell=True)
|
||||
elif os.name == "posix":
|
||||
sys_name = "Linux"
|
||||
editor_path = "%s/Engine/Binaries/%s/UE4Editor" % (ue4_path, sys_name)
|
||||
|
|
|
@ -293,11 +293,13 @@ AActor* UOpenDriveToMap::SpawnActorWithCheckNoCollisions(UClass* ActorClassToSpa
|
|||
void UOpenDriveToMap::GenerateTileStandalone(){
|
||||
UE_LOG(LogCarlaToolsMapGenerator, Log, TEXT("UOpenDriveToMap::GenerateTileStandalone Function called"));
|
||||
|
||||
#if PLATFORM_WINDOWS
|
||||
GenerateTile();
|
||||
#else
|
||||
ExecuteTileCommandlet();
|
||||
|
||||
#endif
|
||||
UEditorLoadingAndSavingUtils::SaveDirtyPackages(true, true);
|
||||
UEditorLevelLibrary::SaveCurrentLevel();
|
||||
|
||||
}
|
||||
|
||||
void UOpenDriveToMap::GenerateTile(){
|
||||
|
|
|
@ -105,7 +105,7 @@ if ${BUILD_PYTHONAPI} ; then
|
|||
cp dist/.tmp/$(ls dist/.tmp | grep .whl) dist
|
||||
else
|
||||
/usr/bin/env python${PY_VERSION} setup.py bdist_egg bdist_wheel --dist-dir dist/.tmp --plat ${TARGET_WHEEL_PLATFORM}
|
||||
/usr/bin/env python3 -m auditwheel repair --plat ${TARGET_WHEEL_PLATFORM} --wheel-dir dist dist/.tmp/$(ls dist/.tmp | grep .whl)
|
||||
/usr/bin/env python${PY_VERSION} -m auditwheel repair --plat ${TARGET_WHEEL_PLATFORM} --wheel-dir dist dist/.tmp/$(ls dist/.tmp | grep .whl)
|
||||
fi
|
||||
|
||||
rm -rf dist/.tmp
|
||||
|
|
|
@ -761,7 +761,7 @@ cp -p ${PROJ_SERVER_LIB} ${LIBCARLA_INSTALL_SERVER_FOLDER}/lib/
|
|||
# -- Get and compile patchelf --------------------------------------------------
|
||||
# ==============================================================================
|
||||
|
||||
PATCHELF_VERSION=0.12
|
||||
PATCHELF_VERSION=0.14
|
||||
PATCHELF_REPO=https://github.com/NixOS/patchelf/archive/${PATCHELF_VERSION}.tar.gz
|
||||
|
||||
PATCHELF_TAR=${PATCHELF_VERSION}.tar.gz
|
||||
|
|
Loading…
Reference in New Issue