Ticket #928 (new bug)
Opened 2 weeks ago
Changes to LIBS are lost between configure in ch3 and configure in nemesis
| Reported by: | buntinas | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | mpich2-1.3 |
| Component: | mpich2 | Keywords: | |
| Cc: |
Description
The value of LIBS at the beginning of ch3/configure is set by the top level configure. ch3/configure then adds additional libraries to LIBS, however, when ch3/configure calls nemesis/configure, these changes are lost, i.e., LIBS in nemesis/configure only has the libraries that the top level configure set.
To work around this I put this line at the end of ch3/configure:
export MY_EXPORTED_LIBS="$LIBS"
then added this line to the top of nemesis/configure:
LIBS="$MY_EXPORTED_LIBS"
This doesn't happen with LDFLAGS.
Attachments
Note: See
TracTickets for help on using
tickets.
