mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-10 22:00:09 +02:00
27 lines
797 B
Diff
27 lines
797 B
Diff
From cc357095af73c88c2cc267bc355ad59476afde50 Mon Sep 17 00:00:00 2001
|
|
From: Augustin Cavalier <waddlesplash@gmail.com>
|
|
Date: Wed, 3 Dec 2014 20:58:56 -0500
|
|
Subject: [PATCH] Don't pass -rdynamic on Haiku.
|
|
|
|
Our GCC4 doesn't support this and throws an error.
|
|
---
|
|
monkey/monkey.pro | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/monkey/monkey.pro b/monkey/monkey.pro
|
|
index a5f6cfc..bd7910f 100644
|
|
--- a/monkey/monkey.pro
|
|
+++ b/monkey/monkey.pro
|
|
@@ -28,7 +28,7 @@ mac {
|
|
} else {
|
|
*-*g++* {
|
|
LIBS *= -Wl,--whole-archive # import all symbols as the not used ones too
|
|
- unix:LIBS *= -rdynamic
|
|
+ unix:LIBS *=
|
|
} else:*-*clang* {
|
|
LIBS *= -Wl,--whole-archive # import all symbols as the not used ones too
|
|
unix:LIBS *= -rdynamic
|
|
--
|
|
1.8.3.4
|
|
|