mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
commit
0e977f6658
15
pkgs/servers/osrm-backend/4.5.0-gcc-binutils.patch
Normal file
15
pkgs/servers/osrm-backend/4.5.0-gcc-binutils.patch
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -127,8 +127,9 @@ if(CMAKE_BUILD_TYPE MATCHES Release)
|
||||||
|
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" AND
|
||||||
|
NOT "${CMAKE_CXX_COMPILER_VERSION}" VERSION_LESS "4.9.0" AND NOT MINGW)
|
||||||
|
message(STATUS "Using gcc specific binutils for LTO.")
|
||||||
|
- set(CMAKE_AR "/usr/bin/gcc-ar")
|
||||||
|
- set(CMAKE_RANLIB "/usr/bin/gcc-ranlib")
|
||||||
|
+ # Just let PATH do its job
|
||||||
|
+ set(CMAKE_AR "gcc-ar")
|
||||||
|
+ set(CMAKE_RANLIB "gcc-ranlib")
|
||||||
|
endif()
|
||||||
|
endif (HAS_LTO_FLAG)
|
||||||
|
endif()
|
@ -1,15 +1,18 @@
|
|||||||
{stdenv, fetchurl, cmake, luabind, libosmpbf, stxxl, tbb, boost, expat, protobuf, bzip2, zlib, substituteAll}:
|
{stdenv, fetchFromGitHub, cmake, luabind, libosmpbf, stxxl, tbb, boost, expat, protobuf, bzip2, zlib, substituteAll}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "osrm-backend-4.5.0";
|
name = "osrm-backend-4.5.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/Project-OSRM/osrm-backend/archive/v4.5.0.tar.gz";
|
rev = "v4.5.0";
|
||||||
sha256 = "af61e883051f2ecb73520ace6f17cc6da30edc413208ff7cf3d87992eca0756c";
|
owner = "Project-OSRM";
|
||||||
|
repo = "osrm-backend";
|
||||||
|
sha256 = "19a8d1llvsrysyk1q48dpmh75qcbibfjlszndrysk11yh62hdvsz";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./4.5.0-openmp.patch
|
./4.5.0-openmp.patch
|
||||||
|
./4.5.0-gcc-binutils.patch
|
||||||
(substituteAll {
|
(substituteAll {
|
||||||
src = ./4.5.0-default-profile-path.template.patch;
|
src = ./4.5.0-default-profile-path.template.patch;
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user