Re: [llvm-commits] [126665] Revert previous patch.

2007-04-29 Thread Bill Wendling
Is this to mean that

for t in $TARGETS ; do
   ln -s ../../../libstdc++.6.dylib \
 .$DEST_ROOT/lib/gcc/$t-apple-darwin$DARWIN_VERS/$VERS/libstdc+ 
+.dylib \
 || exit 1
done

is the correct patch and that the one brought over from the merge  
should be ignored?

:-)

-bw

On Apr 27, 2007, at 10:01 PM, Evan Cheng wrote:

> Please ignore. There was no problem. It's something else that was
> causing issues.
>
> Evan
> On Apr 27, 2007, at 7:08 PM, Bill wrote:
>
>> The newest LLVM-GCC merge has this:
>>
>> for t in $TARGETS ; do
>> -  ln -s ../../../libstdc++.6.dylib \
>> +  cp -p /usr/lib/libstdc++.6.dylib \
>>  .$DEST_ROOT/lib/gcc/$t-apple-darwin$DARWIN_VERS/$VERS/libstdc+
>> +.dylib \
>>  || exit 1
>> +  strip -x -c .$DEST_ROOT/lib/gcc/$t-apple-darwin$DARWIN_VERS/
>> $VERS/libstdc++.dylib
>> || exit 1
>>  done
>>
>> The "strip" line breaks. But does this help you with the problem
>> you're seeing?
>>
>> -bw
>>
>> On 4/27/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>>> Revision: 126665
>>> Author:   echeng
>>> Date: 2007-04-27 18:07:12 -0700 (Fri, 27 Apr 2007)
>>>
>>> Log Message:
>>> ---
>>> Revert previous patch. libstdc++.dylib links still needed.
>>>
>>> Modified Paths:
>>> --
>>> apple-local/branches/llvm/build_gcc
>>>
>>> Modified: apple-local/branches/llvm/build_gcc
>>> ===
>>> --- apple-local/branches/llvm/build_gcc 2007-04-28 01:03:48 UTC
>>> (rev 126664)
>>> +++ apple-local/branches/llvm/build_gcc 2007-04-28 01:07:12 UTC
>>> (rev 126665)
>>> @@ -451,6 +451,12 @@
>>>fi
>>>  done
>>>
>>> +for t in $TARGETS ; do
>>> +  ln -s ../../../libstdc++.6.dylib \
>>> +.$DEST_ROOT/lib/gcc/$t-apple-darwin$DARWIN_VERS/$VERS/libstdc+
>>> +.dylib \
>>> +|| exit 1
>>> +done
>>> +
>>>  # include
>>>  HEADERPATH=$DEST_ROOT/include/gcc/darwin/$MAJ_VERS
>>>  mkdir -p .$HEADERPATH || exit 1
>>>
>>>
>>> ___
>>> llvm-commits mailing list
>>> llvm-commits@cs.uiuc.edu
>>> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>>>
>> ___
>> llvm-commits mailing list
>> llvm-commits@cs.uiuc.edu
>> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
> ___
> llvm-commits mailing list
> llvm-commits@cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


Re: [llvm-commits] [126665] Revert previous patch.

2007-04-27 Thread Evan Cheng
Please ignore. There was no problem. It's something else that was  
causing issues.

Evan
On Apr 27, 2007, at 7:08 PM, Bill wrote:

> The newest LLVM-GCC merge has this:
>
> for t in $TARGETS ; do
> -  ln -s ../../../libstdc++.6.dylib \
> +  cp -p /usr/lib/libstdc++.6.dylib \
>  .$DEST_ROOT/lib/gcc/$t-apple-darwin$DARWIN_VERS/$VERS/libstdc+ 
> +.dylib \
>  || exit 1
> +  strip -x -c .$DEST_ROOT/lib/gcc/$t-apple-darwin$DARWIN_VERS/ 
> $VERS/libstdc++.dylib
> || exit 1
>  done
>
> The "strip" line breaks. But does this help you with the problem  
> you're seeing?
>
> -bw
>
> On 4/27/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>> Revision: 126665
>> Author:   echeng
>> Date: 2007-04-27 18:07:12 -0700 (Fri, 27 Apr 2007)
>>
>> Log Message:
>> ---
>> Revert previous patch. libstdc++.dylib links still needed.
>>
>> Modified Paths:
>> --
>> apple-local/branches/llvm/build_gcc
>>
>> Modified: apple-local/branches/llvm/build_gcc
>> ===
>> --- apple-local/branches/llvm/build_gcc 2007-04-28 01:03:48 UTC  
>> (rev 126664)
>> +++ apple-local/branches/llvm/build_gcc 2007-04-28 01:07:12 UTC  
>> (rev 126665)
>> @@ -451,6 +451,12 @@
>>fi
>>  done
>>
>> +for t in $TARGETS ; do
>> +  ln -s ../../../libstdc++.6.dylib \
>> +.$DEST_ROOT/lib/gcc/$t-apple-darwin$DARWIN_VERS/$VERS/libstdc+ 
>> +.dylib \
>> +|| exit 1
>> +done
>> +
>>  # include
>>  HEADERPATH=$DEST_ROOT/include/gcc/darwin/$MAJ_VERS
>>  mkdir -p .$HEADERPATH || exit 1
>>
>>
>> ___
>> llvm-commits mailing list
>> llvm-commits@cs.uiuc.edu
>> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>>
> ___
> llvm-commits mailing list
> llvm-commits@cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


Re: [llvm-commits] [126665] Revert previous patch.

2007-04-27 Thread Bill
The newest LLVM-GCC merge has this:

for t in $TARGETS ; do
-  ln -s ../../../libstdc++.6.dylib \
+  cp -p /usr/lib/libstdc++.6.dylib \
 .$DEST_ROOT/lib/gcc/$t-apple-darwin$DARWIN_VERS/$VERS/libstdc++.dylib \
 || exit 1
+  strip -x -c 
.$DEST_ROOT/lib/gcc/$t-apple-darwin$DARWIN_VERS/$VERS/libstdc++.dylib
|| exit 1
 done

The "strip" line breaks. But does this help you with the problem you're seeing?

-bw

On 4/27/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Revision: 126665
> Author:   echeng
> Date: 2007-04-27 18:07:12 -0700 (Fri, 27 Apr 2007)
>
> Log Message:
> ---
> Revert previous patch. libstdc++.dylib links still needed.
>
> Modified Paths:
> --
> apple-local/branches/llvm/build_gcc
>
> Modified: apple-local/branches/llvm/build_gcc
> ===
> --- apple-local/branches/llvm/build_gcc 2007-04-28 01:03:48 UTC (rev 126664)
> +++ apple-local/branches/llvm/build_gcc 2007-04-28 01:07:12 UTC (rev 126665)
> @@ -451,6 +451,12 @@
>fi
>  done
>
> +for t in $TARGETS ; do
> +  ln -s ../../../libstdc++.6.dylib \
> +.$DEST_ROOT/lib/gcc/$t-apple-darwin$DARWIN_VERS/$VERS/libstdc++.dylib \
> +|| exit 1
> +done
> +
>  # include
>  HEADERPATH=$DEST_ROOT/include/gcc/darwin/$MAJ_VERS
>  mkdir -p .$HEADERPATH || exit 1
>
>
> ___
> llvm-commits mailing list
> llvm-commits@cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits