mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
4c76a21aae
Outside of the nix-build the target is `x86_64-apple-darwin17.4.0`, while inside the target is `x86_64-apple-darwin`. This difference causes the fallback target configuration for darwin, which disables gdb. Add a patch to make the target matching more flexible.
12 lines
377 B
Diff
12 lines
377 B
Diff
--- a/configure 2017-06-05 00:51:26.000000000 +0900
|
|
+++ b/configure 2018-03-06 23:12:58.000000000 +0900
|
|
@@ -3603,7 +3603,7 @@
|
|
noconfigdirs="$noconfigdirs ld gprof"
|
|
noconfigdirs="$noconfigdirs sim target-rda"
|
|
;;
|
|
- x86_64-*-darwin[912]*)
|
|
+ x86_64-*-darwin*)
|
|
noconfigdirs="$noconfigdirs ld gas gprof"
|
|
noconfigdirs="$noconfigdirs sim target-rda"
|
|
;;
|