Kaydet (Commit) 9d25bd11 authored tarafından Rob Boehne's avatar Rob Boehne Kaydeden (comit) Łukasz Langa

Modify configure to link with the compiler driver under HP-UX when not using gcc. (#2519)

üst bd4ed77f
...@@ -9124,7 +9124,8 @@ then ...@@ -9124,7 +9124,8 @@ then
LDSHARED='$(CC) -shared' LDSHARED='$(CC) -shared'
LDCXXSHARED='$(CXX) -shared' LDCXXSHARED='$(CXX) -shared'
else else
LDSHARED='ld -b' LDSHARED='$(CC) -b'
LDCXXSHARED='$(CXX) -shared'
fi ;; fi ;;
Darwin/1.3*) Darwin/1.3*)
LDSHARED='$(CC) -bundle' LDSHARED='$(CC) -bundle'
......
...@@ -2442,7 +2442,8 @@ then ...@@ -2442,7 +2442,8 @@ then
LDSHARED='$(CC) -shared' LDSHARED='$(CC) -shared'
LDCXXSHARED='$(CXX) -shared' LDCXXSHARED='$(CXX) -shared'
else else
LDSHARED='ld -b' LDSHARED='$(CC) -b'
LDCXXSHARED='$(CXX) -b'
fi ;; fi ;;
Darwin/1.3*) Darwin/1.3*)
LDSHARED='$(CC) -bundle' LDSHARED='$(CC) -bundle'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment