Changeset 86f12bc in rtems


Ignore:
Timestamp:
11/19/02 17:05:34 (21 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
1f64ebf
Parents:
20d7ed37
Message:

2002-11-19 Ralf Corsepius <corsepiu@…>

  • automake/compile.am: Remove LD_PATHS (Unused).
  • aclocal/check-newlib.m4: Adaptation to autoconf-2.5x (AC_TRY_LINK is announced obsolete).
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r20d7ed37 r86f12bc  
     12002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * automake/compile.am: Remove LD_PATHS (Unused).
     4        * aclocal/check-newlib.m4: Adaptation to autoconf-2.5x (AC_TRY_LINK
     5        is announced obsolete).
     6
    172002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • aclocal/check-newlib.m4

    r20d7ed37 r86f12bc  
    99  [
    1010dnl some versions of newlib provide not_required_by_rtems
    11     AC_TRY_LINK(
    12       [extern void not_required_by_rtems() ;],
    13       [not_required_by_rtems()],
    14       rtems_cv_use_newlib="yes")
     11    AC_LINK_IFELSE(
     12      [AC_LANG_PROGRAM([[extern void not_required_by_rtems() ;]],
     13        [[not_required_by_rtems()]])],
     14      [rtems_cv_use_newlib="yes"],[])
    1515
    1616dnl some versions of newlib provide rtems_provides_crt0()
    1717    AS_IF([test -z "$rtems_cv_use_newlib"],
    18       [AC_TRY_LINK(
    19         [extern void rtems_provides_crt0() ;],
    20         [rtems_provides_crt0()],
    21         rtems_cv_use_newlib="yes",
    22         rtems_cv_use_newlib="no")]
    23     )
     18      [AC_LINK_IFELSE(
     19         [AC_LANG_PROGRAM([[extern void rtems_provides_crt0() ;]],
     20           [[rtems_provides_crt0()]])],
     21         [rtems_cv_use_newlib="yes"],[rtems_cv_use_newlib="no"])
     22    ])
    2423  ])
    2524  RTEMS_USE_NEWLIB="$rtems_cv_use_newlib"
  • automake/compile.am

    r20d7ed37 r86f12bc  
    6767LDFLAGS_PROFILE_V =
    6868
    69 # List of library paths without -L
    70 LD_PATHS= $(PROJECT_RELEASE)/lib
    71 
    7269# ld flag for incomplete link
    7370LDFLAGS_INCOMPLETE = -r
    7471
    7572# ld flags for profiling, debugging
    76 LDFLAGS=$(LDFLAGS_PROFILE) $(LDFLAGS_DEBUG) $(LD_PATHS:%=-L %)
     73LDFLAGS=$(LDFLAGS_PROFILE) $(LDFLAGS_DEBUG)
    7774
    7875#
Note: See TracChangeset for help on using the changeset viewer.