On 10 June 2018 at 01:28, Joel Sherrill <j...@rtems.org> wrote:

>
>
> On Sat, Jun 9, 2018, 2:29 PM Vijay Kumar Banerjee <
> vijaykumar9...@gmail.com> wrote:
>
>> On 10 June 2018 at 00:55, Joel Sherrill <j...@rtems.org> wrote:
>>
>>>
>>>
>>> On Sat, Jun 9, 2018, 2:22 PM Vijay Kumar Banerjee <
>>> vijaykumar9...@gmail.com> wrote:
>>>
>>>> On 9 June 2018 at 19:56, Joel Sherrill <j...@rtems.org> wrote:
>>>>
>>>>>
>>>>>
>>>>> On Sat, Jun 9, 2018, 6:01 AM Vijay Kumar Banerjee <
>>>>> vijaykumar9...@gmail.com> wrote:
>>>>>
>>>>>> Hello,
>>>>>>
>>>>>> I was going through the gcc manual for gcov
>>>>>> https://gcc.gnu.org/onlinedocs/gcc/Gcov-and-
>>>>>> Optimization.html#Gcov-and-Optimization
>>>>>>
>>>>>> It mentions that the flag -fprofile-arcs is necessary for generating
>>>>>> the .gcda files.
>>>>>> I have tried it with a small hello world program to see the reports,
>>>>>> and it seems
>>>>>> that for .gcda files this flag is necessary.
>>>>>>
>>>>>> when I include the flag `-fprofile-arcs` with `-ftest-coverage` and
>>>>>> then make
>>>>>> I'm getting the following error.
>>>>>>
>>>>>> =============================
>>>>>> checking whether the C compiler works... no
>>>>>> configure: error: in `/home/lunatic/development/
>>>>>> rtems/kernel/leon3/sparc-rtems5/c/leon3':
>>>>>> configure: error: C compiler cannot create executables
>>>>>> See `config.log' for more details
>>>>>> gmake[2]: *** [Makefile:731: leon3] Error 1
>>>>>> gmake[2]: Leaving directory '/home/lunatic/development/
>>>>>> rtems/kernel/leon3/sparc-rtems5/c'
>>>>>> gmake[1]: *** [Makefile:289: all-recursive] Error 1
>>>>>> gmake[1]: Leaving directory '/home/lunatic/development/
>>>>>> rtems/kernel/leon3/sparc-rtems5/c'
>>>>>> gmake: *** [Makefile:414: all-recursive] Error 1
>>>>>>
>>>>>> =============================
>>>>>>
>>>>>
>>>>> It may be looking for a symbol provided by libgov.a. We don't have
>>>>> that based on how we do coverage.
>>>>>
>>>>> The normal approach is to add it to the RTEMS dummy crt0.c in newlib.
>>>>>
>>>>
>>>> er.... looks confusing, are there any instructions ? :)
>>>>
>>>
>>> What's the error first? What was in config.log in the directory with the
>>> failure?
>>>
>>> I added this.
>>
>> CFLAGS_OPTIMIZE_V += -fprofile-arcs -ftest-coverage
>>
>> when I `make` it, I see this error.
>>
>> =============================
>> checking whether the C compiler works... no
>> configure: error: in `/home/lunatic/development/rtems/kernel/leon3/sparc-
>> rtems5/c/leon3':
>> configure: error: C compiler cannot create executables
>> See `config.log' for more details
>> gmake[2]: *** [Makefile:731: leon3] Error 1
>> gmake[2]: Leaving directory '/home/lunatic/development/
>> rtems/kernel/leon3/sparc-rtems5/c'
>> gmake[1]: *** [Makefile:289: all-recursive] Error 1
>> gmake[1]: Leaving directory '/home/lunatic/development/
>> rtems/kernel/leon3/sparc-rtems5/c'
>> gmake: *** [Makefile:414: all-recursive] Error 1
>>
>> =============================
>>
>
> I completely understood that. When you look in config.log in what looks to
> be a leon3 subdirectory, what's in the log file?
>
> I have attached the config.log file .


> My reading of the gcc manual was that one of those options implicitly
> added an option to link with libgcov.a. please confirm that.
>
yes , -fprofile-arcs implicitly adds option to link with libgcov

>
>>
>>
>>>
>>>
>>>>>>
>>>>>> On 8 June 2018 at 01:13, Vijay Kumar Banerjee <
>>>>>> vijaykumar9...@gmail.com> wrote:
>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> On Fri, 8 Jun 2018, 01:09 Joel Sherrill, <j...@rtems.org> wrote:
>>>>>>>
>>>>>>>> Bringing in Krzysztof. Hoping he can get us on the right track here.
>>>>>>>>
>>>>>>>> I don't think you can run GcovData.cc independent of a covoar run.
>>>>>>>>
>>>>>>> Understood.
>>>>>>>
>>>>>>>> If you can figure out how to write a unit test that would be
>>>>>>>> helpful.
>>>>>>>>
>>>>>>> Will try to do that if possible.
>>>>>>>
>>>>>>>>
>>>>>>>> On Thu, Jun 7, 2018 at 2:29 PM, Vijay Kumar Banerjee <
>>>>>>>> vijaykumar9...@gmail.com> wrote:
>>>>>>>>
>>>>>>>>> Hello,
>>>>>>>>>
>>>>>>>>> I was looking into the code in GcovData.cc to see how it works
>>>>>>>>> and what it's doing, too me it looked like very messed up, I
>>>>>>>>> couldn't
>>>>>>>>> understand (yet) what it's trying to do.
>>>>>>>>> Is there some way I can manually run it for one file?
>>>>>>>>> Is there any place where I can read how it was intended to work?
>>>>>>>>> Or something like a flow diagram?
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> -- vijay
>>>>>>>>>
>>>>>>>>> On 7 June 2018 at 02:56, Vijay Kumar Banerjee <
>>>>>>>>> vijaykumar9...@gmail.com> wrote:
>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On Thu, 7 Jun 2018, 02:39 Joel Sherrill, <j...@rtems.org> wrote:
>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> On Wed, Jun 6, 2018, 3:56 PM Vijay Kumar Banerjee <
>>>>>>>>>>> vijaykumar9...@gmail.com> wrote:
>>>>>>>>>>>
>>>>>>>>>>>> On 7 June 2018 at 01:48, Joel Sherrill <j...@rtems.org> wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> On Wed, Jun 6, 2018, 2:07 PM Vijay Kumar Banerjee <
>>>>>>>>>>>>> vijaykumar9...@gmail.com> wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 6 June 2018 at 20:49, Joel Sherrill <j...@rtems.org>
>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> I can't duplicate this. My configure command was:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> ../rtems/configure --target=sparc-rtems5
>>>>>>>>>>>>>>> --enable-rtemsbsp=leon3 --prefix=/home/joel/rtems-work/tools/5
>>>>>>>>>>>>>>> \
>>>>>>>>>>>>>>>    --disable-networking --enable-posix --disable-smp
>>>>>>>>>>>>>>> --disable-multiprocessing \
>>>>>>>>>>>>>>>    --enable-tests --enable-cxx --enable-maintainer-mode
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> What was yours?
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> I didn't have --enable-cxx and --enable-maintainer-more.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> I made some tries and somehow it's perfectly working now.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> I am trying to find out now how covoar generates the reports.
>>>>>>>>>>>>>> I made a file with a list of all gcno in score/ and run with
>>>>>>>>>>>>>> -g argument
>>>>>>>>>>>>>> now I'mg seeing the following error while running covoar
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ======================
>>>>>>>>>>>>>> Generating Gcov reports...
>>>>>>>>>>>>>> Processing file: libscore_a-allocatormutex.gcno
>>>>>>>>>>>>>> Unable to open libscore_a-allocatormutex.gcno
>>>>>>>>>>>>>> Processing file: libscore_a-apimutexisowner.gcno
>>>>>>>>>>>>>> Unable to open libscore_a-apimutexisowner.gcno
>>>>>>>>>>>>>> Processing file: libscore_a-apimutexlock.gcno
>>>>>>>>>>>>>> Unable to open libscore_a-apimutexlock.gcno
>>>>>>>>>>>>>> Processing file: libscore_a-apimutexunlock.gcno
>>>>>>>>>>>>>> Unable to open libscore_a-apimutexunlock.gcno
>>>>>>>>>>>>>> Processing file: libscore_a-chain.gcno
>>>>>>>>>>>>>> Unable to open libscore_a-chain.gcno
>>>>>>>>>>>>>> Processing file: libscore_a-chainnodecount.gcno
>>>>>>>>>>>>>> .
>>>>>>>>>>>>>> .
>>>>>>>>>>>>>> .
>>>>>>>>>>>>>> ======================
>>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> I suspect this is another instance of the path issues inside
>>>>>>>>>>>>> the build tree you and Cillian fixed earlier.
>>>>>>>>>>>>>
>>>>>>>>>>>>> correcting the path worked.
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Submit a patch for this. It needs fixing to get 5onyour next
>>>>>>>>>>> issue.
>>>>>>>>>>>
>>>>>>>>>> It just needed the absolute path to be fed.
>>>>>>>>>> here's what I did.
>>>>>>>>>> I manually 'find' all the gcno files under score.
>>>>>>>>>> wrote it all in a file separated by newlines.
>>>>>>>>>> fed that file as an argument to covoar.
>>>>>>>>>> and that brought me here.
>>>>>>>>>>
>>>>>>>>>> So when we write script, these are the
>>>>>>>>>> things that will be done by the script.
>>>>>>>>>>
>>>>>>>>>> Once everything strats running manually,
>>>>>>>>>> we can proceed to write scripts.
>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>> Now I'm getting this error.
>>>>>>>>>>>>
>>>>>>>>>>>> Generating Gcov reports...
>>>>>>>>>>>> Processing file: sparc-rtems5/c/leon3/cpukit/
>>>>>>>>>>>> score/src/libscore_a-kern_tc.gcno
>>>>>>>>>>>> ERROR: Unable to read string from gcov file
>>>>>>>>>>>> ERROR: Unable to read string length from gcov file
>>>>>>>>>>>> ERROR: Unable to read Function starting line number
>>>>>>>>>>>> Segmentation fault (core dumped)
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Welcome to GSoC! You are now in new territory. :)
>>>>>>>>>>>
>>>>>>>>>> So here the real work begins!
>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Dig in and see what went wrong. Be aware.that GCC file formats
>>>>>>>>>>> may (or may not) be subject to.changing over time and this could 
>>>>>>>>>>> just be
>>>>>>>>>>> bitrot.
>>>>>>>>>>>
>>>>>>>>>> I got started with it.
>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Gcov-dump is installed with the compiler.
>>>>>>>>>>>
>>>>>>>>>>> You should check it we have a .h file describing the file and it
>>>>>>>>>>> is out of date.
>>>>>>>>>>>
>>>>>>>>>> I'll look into it.
>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Also I think we now should bring the gsov maintainer in.
>>>>>>>>>>>
>>>>>>>>>> The covoar's gcov support needs to be reworked.
>>>>>>>>>> We can get the help of the expert here.
>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Good job!
>>>>>>>>>>>
>>>>>>>>>> Thanks. :)
>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>>>> On Wed, Jun 6, 2018 at 9:40 AM, Vijay Kumar Banerjee <
>>>>>>>>>>>>>>> vijaykumar9...@gmail.com> wrote:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Hello,
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> I have added the following changes in the
>>>>>>>>>>>>>>>> bsps/sparc/leon3/config/leon3.cfg
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ----------
>>>>>>>>>>>>>>>> CFLAGS_OPTIMIZE_V = -Os -g
>>>>>>>>>>>>>>>> CFLAGS_OPTIMIZE_V += -ftest-coverage
>>>>>>>>>>>>>>>> -------
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> While trying to build with these flags, I got a bunch of
>>>>>>>>>>>>>>>> the following errors:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ==========
>>>>>>>>>>>>>>>> {standard input}: Assembler messages:
>>>>>>>>>>>>>>>> {standard input}:6510: Error: can't resolve
>>>>>>>>>>>>>>>> `.data._SPARC_Counter' {.data._SPARC_Counter section} - 
>>>>>>>>>>>>>>>> `.LLtext0' {.text
>>>>>>>>>>>>>>>> section}
>>>>>>>>>>>>>>>> {standard input}:6511: Error: can't resolve
>>>>>>>>>>>>>>>> `.data._SPARC_Counter' {.data._SPARC_Counter section} - 
>>>>>>>>>>>>>>>> `.LLtext0' {.text
>>>>>>>>>>>>>>>> section}
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ===================
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> after the `make install` I do get a lot of .gcno files, and
>>>>>>>>>>>>>>>> no
>>>>>>>>>>>>>>>> executables.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> -- vijay
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> devel mailing list
>>>>>>>>>>>>>>>> devel@rtems.org
>>>>>>>>>>>>>>>> http://lists.rtems.org/mailman/listinfo/devel
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>
>>>>
>>
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by rtems configure 5.0.0, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ../rtems/configure --prefix=/home/lunatic/development/rtems/5 --target=sparc-rtems5 -enable-rtemsbsp=leon3 --disable-smp --enable-posix --enable-tests --enable-maintainer-mode

## --------- ##
## Platform. ##
## --------- ##

hostname = lunatic
uname -m = x86_64
uname -r = 4.15.8-300.fc27.x86_64
uname -s = Linux
uname -v = #1 SMP Fri Mar 9 18:11:36 UTC 2018

/usr/bin/uname -p = x86_64
/bin/uname -X     = unknown

/bin/arch              = x86_64
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /home/lunatic/qemu/install/bin
PATH: /home/lunatic/development/rtems/5/bin
PATH: /usr/local/bin
PATH: /usr/local/sbin
PATH: /usr/bin
PATH: /usr/sbin
PATH: /home/lunatic/.local/bin
PATH: /home/lunatic/bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:1852: checking for gmake
configure:1868: found /usr/bin/gmake
configure:1879: result: gmake
configure:1904: checking for RTEMS Version
configure:1906: result: 5.0.0
configure:1936: checking build system type
configure:1950: result: x86_64-pc-linux-gnu
configure:1970: checking host system type
configure:1983: result: x86_64-pc-linux-gnu
configure:2003: checking target system type
configure:2016: result: sparc-unknown-rtems5
configure:2058: checking for a BSD-compatible install
configure:2126: result: /usr/bin/install -c
configure:2137: checking whether build environment is sane
configure:2192: result: yes
configure:2343: checking for a thread-safe mkdir -p
configure:2382: result: /usr/bin/mkdir -p
configure:2389: checking for gawk
configure:2405: found /usr/bin/gawk
configure:2416: result: gawk
configure:2427: checking whether gmake sets $(MAKE)
configure:2449: result: yes
configure:2527: checking whether to enable maintainer-specific portions of Makefiles
configure:2536: result: yes
configure:2755: checking for sparc-rtems5-gcc
configure:2771: found /home/lunatic/development/rtems/5/bin/sparc-rtems5-gcc
configure:2782: result: sparc-rtems5-gcc
configure:3004: checking that generated files are newer than configure
configure:3010: result: done
configure:3307: creating ./config.status
configure:4331: configuring in ./tools/build
configure:4418: running /bin/sh '../../../rtems/tools/build/configure' '--prefix=/home/lunatic/development/rtems/5' '--host=x86_64-pc-linux-gnu' '--build=x86_64-pc-linux-gnu'  '-enable-rtemsbsp=leon3' '--disable-smp' '--enable-posix' '--enable-tests' '--enable-maintainer-mode' '--target=sparc-rtems5'  '--cache-file=/dev/null' '--srcdir=../../../rtems/tools/build'
configure:4331: configuring in ./tools/cpu
configure:4418: running /bin/sh '../../../rtems/tools/cpu/configure' '--prefix=/home/lunatic/development/rtems/5' '--host=x86_64-pc-linux-gnu' '--build=x86_64-pc-linux-gnu'  '-enable-rtemsbsp=leon3' '--disable-smp' '--enable-posix' '--enable-tests' '--enable-maintainer-mode' '--target=sparc-rtems5'  '--cache-file=/dev/null' '--srcdir=../../../rtems/tools/cpu'
configure:4589: configuring in sparc-rtems5/c
configure:4676: running /bin/sh '../../../rtems/c/configure' '--prefix=/home/lunatic/development/rtems/5' '--host=sparc-rtems5' '--build=x86_64-pc-linux-gnu' '--target=sparc-rtems5'  '-enable-rtemsbsp=leon3' '--disable-smp' '--enable-posix' '--enable-tests' '--enable-maintainer-mode' '--with-target-subdir=sparc-rtems5' '--exec-prefix=/home/lunatic/development/rtems/5/sparc-rtems5' '--includedir=/home/lunatic/development/rtems/5/sparc-rtems5/include'  '--cache-file=/dev/null' '--srcdir=../../../rtems/c'

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by rtems config.status 5.0.0, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on lunatic

config.status:778: creating Makefile

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=x86_64-pc-linux-gnu
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=set
ac_cv_env_target_alias_value=sparc-rtems5
ac_cv_host=x86_64-pc-linux-gnu
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/usr/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_MAKE=gmake
ac_cv_prog_RTEMS_CC=sparc-rtems5-gcc
ac_cv_prog_make_gmake_set=yes
ac_cv_target=sparc-unknown-rtems5

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /home/lunatic/development/rtems/kernel/rtems/missing --run aclocal-1.12'
AMTAR='$${TAR-tar}'
AUTOCONF='${SHELL} /home/lunatic/development/rtems/kernel/rtems/missing --run autoconf'
AUTOHEADER='${SHELL} /home/lunatic/development/rtems/kernel/rtems/missing --run autoheader'
AUTOMAKE='${SHELL} /home/lunatic/development/rtems/kernel/rtems/missing --run automake-1.12'
AWK='gawk'
CYGPATH_W='echo'
DEFS='-DPACKAGE_NAME=\"rtems\" -DPACKAGE_TARNAME=\"rtems\" -DPACKAGE_VERSION=\"5.0.0\" -DPACKAGE_STRING=\"rtems\ 5.0.0\" -DPACKAGE_BUGREPORT=\"https://devel.rtems.org/newticket\"; -DPACKAGE_URL=\"\"'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
LIBOBJS=''
LIBS=''
LTLIBOBJS=''
MAINT=''
MAINTAINER_MODE_FALSE='#'
MAINTAINER_MODE_TRUE=''
MAKE='gmake'
MAKEINFO='${SHELL} /home/lunatic/development/rtems/kernel/rtems/missing --run makeinfo'
MKDIR_P='/usr/bin/mkdir -p'
PACKAGE='rtems'
PACKAGE_BUGREPORT='https://devel.rtems.org/newticket'
PACKAGE_NAME='rtems'
PACKAGE_STRING='rtems 5.0.0'
PACKAGE_TARNAME='rtems'
PACKAGE_URL=''
PACKAGE_VERSION='5.0.0'
PATH_SEPARATOR=':'
PROJECT_ROOT='./$(top_builddir)'
PROJECT_TOPdir='./$(top_builddir)'
RTEMS_BUILD_ROOT=''
RTEMS_CC='sparc-rtems5-gcc'
RTEMS_HAS_NETWORKING='yes'
RTEMS_HAS_POSIX_API='yes'
RTEMS_SOURCE_ROOT=''
RTEMS_TOPdir='.'
SET_MAKE=''
SHELL='/bin/sh'
STRIP=''
VERSION='5.0.0'
am__isrc=' -I$(srcdir)'
am__leading_dot='.'
am__tar='$${TAR-tar} chof - "$$tardir"'
am__untar='$${TAR-tar} xf -'
bindir='${exec_prefix}/bin'
build='x86_64-pc-linux-gnu'
build_SUBDIRS=' tools/build tools/cpu'
build_alias=''
build_configdirs=' tools/build tools/cpu'
build_cpu='x86_64'
build_os='linux-gnu'
build_subdir='.'
build_vendor='pc'
buildargs=''\''--host=x86_64-pc-linux-gnu'\'' '\''--build=x86_64-pc-linux-gnu'\''  '\''-enable-rtemsbsp=leon3'\'' '\''--disable-smp'\'' '\''--enable-posix'\'' '\''--enable-tests'\'' '\''--enable-maintainer-mode'\'' '\''--target=sparc-rtems5'\'''
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host='x86_64-pc-linux-gnu'
host_SUBDIRS=''
host_alias=''
host_configdirs=''
host_cpu='x86_64'
host_os='linux-gnu'
host_subdir=''
host_vendor='pc'
hostargs=''\''--host=x86_64-pc-linux-gnu'\'' '\''--build=x86_64-pc-linux-gnu'\'' '\''--target=sparc-rtems5'\''  '\''-enable-rtemsbsp=leon3'\'' '\''--disable-smp'\'' '\''--enable-posix'\'' '\''--enable-tests'\'' '\''--enable-maintainer-mode'\'''
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/lunatic/development/rtems/kernel/rtems/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='$(MKDIR_P)'
oldincludedir='/usr/include'
pdfdir='${docdir}'
pkgdatadir='${datarootdir}/rtems5'
prefix='/home/lunatic/development/rtems/5'
program_transform_name='s&^&sparc-rtems5-&'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target='sparc-unknown-rtems5'
target_SUBDIRS=' sparc-rtems5/c'
target_alias='sparc-rtems5'
target_configdirs=' c'
target_cpu='sparc'
target_os='rtems5'
target_subdir='sparc-rtems5'
target_vendor='unknown'
targetargs=''\''--host=sparc-rtems5'\'' '\''--build=x86_64-pc-linux-gnu'\'' '\''--target=sparc-rtems5'\''  '\''-enable-rtemsbsp=leon3'\'' '\''--disable-smp'\'' '\''--enable-posix'\'' '\''--enable-tests'\'' '\''--enable-maintainer-mode'\'''

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME "rtems"
#define PACKAGE_TARNAME "rtems"
#define PACKAGE_VERSION "5.0.0"
#define PACKAGE_STRING "rtems 5.0.0"
#define PACKAGE_BUGREPORT "https://devel.rtems.org/newticket";
#define PACKAGE_URL ""

configure: exit 0
_______________________________________________
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Reply via email to