Every so often I install perl locally, using more or less the folllowing thread, minus the -Duseithreads bit.
Now I want to compile perl with threads, so the -Duseithreads bit is in there. But doesn't work. I've tried this a couple ways: -Dusethreads and -Duseithreads. It compiles, but when I try to use it with threads, it says I didn't compile it with threads. After like half an hour of churning.
What am I doing wrong? Am I not supposed to repeat the "-D" bit (right now I have it twice, once for specifying the local directory, once for the ithreads bit).
Also, is there a difference between -Dusethreads and -Duseithreads?
Thanks!
angebote@debian:/usr/angebote/thartman$ cat install-local-threaded-per
+l.sh
(
wget http://search.cpan.org/CPAN/authors/id/N/NW/NWCLARK/perl-5.8.8.ta
+r.gz
tar -xzvf perl-5.8.8.tar.gz
cd perl-5.8.8
sh Configure -Dprefix=/usr/angebote/thartman/perlroot/perl -Duseithrea
+ds -des #make this your home directory
make test
make install
) | tee perlinstall.out
angebote@debian:/usr/angebote/thartman$
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.