chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Chicken-users] Segmentation Fault in C_mutate on Chicken 3.5.0 (OpenBSD


From: Taylor Venable
Subject: [Chicken-users] Segmentation Fault in C_mutate on Chicken 3.5.0 (OpenBSD i386)
Date: Mon, 23 Feb 2009 20:14:41 -0500
User-agent: Mutt/1.5.18 (2008-05-17)

Hello,

I sent this message to chicken-janitors but it was rejected, so I'm
hoping that it's OK to post bug reports here as well.

==== BUG REPORT ================================================================

Date: Mon, 23 Feb 2009 19:48:26 -0500
From: Taylor Venable <address@hidden>
To: address@hidden
Subject: Segmentation Fault in C_mutate on Chicken 3.5.0 (OpenBSD i386)

This is the output of chicken-bug which stated that it failed to send
the bug report automatically and directed me to post here.  I'm not
subscribed to the group so please reply to me directly for any ideas.
Hope this is enough information to figure something out, otherwise let
me know if I can provide anything else.  Thanks!

File added: gdb-output.txt

Using Chicken 3.5.0 on OpenBSD 4.5-beta I get segmentation faults when using the
http egg.  This occurs every time when a 404 or 500 error is generated by the
http-server.  I'm new to Chicken and don't really know if this is reproducible
outside of the http package (i.e. it's a larger bug) or if it is specific to the
way http does things.  Below is the source code which causes this problem
consistently, and beyond that a gdb backtrace of the code.  I built Chicken with
debugging symbols, but there are still some intervening places where there are
no symbols.  The method I used to build Chicken was:

    gmake PLATFORM=bsd bootstrap
    gmake PLATFORM=bsd CHICKEN=./chicken-boot DEBUGBUILD=1
    gmake PLATFORM=bsd install

Here's the source of the script that fails.  I compiled it with:

    csc -C -g -o http-test http-test.scm

====  SOURCE CODE ==============================================================

(require-extension http-server)

(http:add-resource '("/")
                   (lambda (r a)
                     (let ([message (sprintf "~s" a)])
                       (http:write-response-header r 200 "OK"
                                                   `(("Content-type" . 
"text/html")
                                                     ("Content-length" . 
,(string-length message))))
                       (display message))))

((http:make-server 5555) #t)

====  GDB OUTPUT ===============================================================

 33 [ taylor @ zeltennia ] : ~ > gdb http-test
GNU gdb 6.3
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i386-unknown-openbsd4.5"...
(gdb) run
Starting program: /home/taylor/http-test
[waiting for requests...]
[request 0 from 127.0.0.1; thread0 (of 1) started...]
[read: "GET /foo HTTP/1.1"]
[request: method=GET, url=/foo, protocol=HTTP/1.1]
[attributes: (("cache-control" . "max-age=0") ("connection" . "keep-alive") 
("keep-alive" . "300") ("accept-charset" . "UTF-8,*") ("accept-encoding" . 
"gzip,deflate") ("accept-language" . "en-us,en;q=0.5") ("accept" . 
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8") 
("user-agent" . "Mozilla/5.0 (X11; U; OpenBSD i386; en-US; rv:1.9.0.6) 
Gecko/2009020423 Firefox/3.0.6") ("host" . "localhost:5555"))]
[handling GET request...]
[raw request value: #<http:request>]
[request handling:  args = ()  resource = #f]
[Error response: HTTP/1.1 404 Not Found]
[closing connection...]
[thread0 finished.]

Program received signal SIGSEGV, Segmentation fault.
0x09d28ca3 in C_mutate (slot=0x3a, val=-809714880) at runtime.c:2695
2695      return *slot = val;
(gdb) bt
#0  0x09d28ca3 in C_mutate (slot=0x3a, val=-809714880) at runtime.c:2695
#1  0x09c4b605 in f_1134r (t0=2112270952, t1=2112264396, t2=-809714880) at 
srfi-18.c:3076
#2  0x09c4b5c3 in f_1134 (c=3, t0=2112270952, t1=2112264396) at srfi-18.c:3066
#3  0x09d30a66 in C_do_apply (n=1, fn=2112270952, k=2112264396) at 
runtime.c:6228
#4  0x09d43401 in values_continuation (c=0, closure=2112270296, arg0=1) at 
runtime.c:6430
#5  0x0376ed43 in f_587 () from /usr/local/lib/chicken/3/http-server.so
#6  0x7de6afd8 in ?? ()
#7  0x00000001 in ?? ()
#8  0x29aff350 in ?? () from /usr/local/lib/libchicken.so
#9  0x09d4321c in C_apply_values (c=3, closure=0, k=2112269784, lst=-809713632) 
at runtime.c:6371
#10 0x0376eae5 in f_635 () from /usr/local/lib/chicken/3/http-server.so
#11 0x7de6abac in ?? ()
#12 0x237689e0 in ?? () from /usr/local/lib/chicken/3/http-server.so
#13 0xcfbcbfd0 in ?? ()
#14 0x7de6a09c in ?? ()
#15 0x0376ed06 in f_594 () from /usr/local/lib/chicken/3/http-server.so
#16 0x7de6add8 in ?? ()
#17 0x29aff350 in ?? () from /usr/local/lib/libchicken.so
#18 0xcfbcbfd0 in ?? ()
#19 0x09d42fc7 in call_cc_wrapper (c=3, closure=2112268592, k=2112268620, 
result=-809713712) at runtime.c:6278
#20 0x09d49526 in _C_do_apply_hack () from /usr/local/lib/libchicken.so
#21 0x00000003 in ?? ()
#22 0x7de6a930 in ?? ()
#23 0x7de6a94c in ?? ()
#24 0xcfbcbfd0 in ?? ()
#25 0x7de6a930 in ?? ()
#26 0x29aca2be in __func__.6 () from /usr/local/lib/libchicken.so
#27 0xcfbcbc38 in ?? ()
#28 0x09d3084c in C_apply (c=4, closure=0, k=2112268620, fn=2112268592) at 
runtime.c:6092
#29 0x09b170f4 in f_7440 (c=2, t0=-809713936, t1=22) at library.c:28937
#30 0x09b16ace in f_7464 (t1=-809713936, t2=2112261424, t3=1) at library.c:28808
#31 0x09b16c2d in f_7509 (c=2, t0=-809714112, t1=2112203524) at library.c:28840
#32 0x09aec745 in f_14880 (c=2, t0=2112264620, t1=-809714112) at library.c:16386
#33 0x09b16bfb in f_7464 (t1=-809713936, t2=2112261424, t3=3) at library.c:28830
#34 0x09b170bd in f_7436r (t0=2112266396, t1=2112268620, t2=-809713808) at 
library.c:28930
#35 0x09b16fba in f_7436 (c=3, t0=2112266396, t1=2112268620) at library.c:28909
#36 0x0376ea74 in f_629r () from /usr/local/lib/chicken/3/http-server.so
#37 0x0376ea19 in f_629 () from /usr/local/lib/chicken/3/http-server.so
#38 0x09d30a66 in C_do_apply (n=1, fn=2112268604, k=2112268620) at 
runtime.c:6228
---Type <return> to continue, or q <return> to quit---
#39 0x09d43401 in values_continuation (c=1, closure=2112266416, arg0=46) at 
runtime.c:6430
#40 0x09d30a66 in C_do_apply (n=1, fn=2112266416, k=46) at runtime.c:6228
#41 0x09d431c2 in C_apply_values (c=3, closure=0, k=2112266416, lst=14) at 
runtime.c:6358
#42 0x0376f64e in f_1040 () from /usr/local/lib/chicken/3/http-server.so
#43 0xcfbcc4c0 in ?? ()
#44 0x237689e0 in ?? () from /usr/local/lib/chicken/3/http-server.so
#45 0xcfbcc4c0 in ?? ()
#46 0x7de658fc in ?? ()
#47 0x03772bbb in f_936 () from /usr/local/lib/chicken/3/http-server.so
#48 0x7de6a0b0 in ?? ()
#49 0x29aff350 in ?? () from /usr/local/lib/libchicken.so
#50 0xcfbcc4c0 in ?? ()
#51 0x09d42fc7 in call_cc_wrapper (c=3, closure=2112261496, k=2112272576, 
result=-809712448) at runtime.c:6278
#52 0x09d49526 in _C_do_apply_hack () from /usr/local/lib/libchicken.so
#53 0x00000003 in ?? ()
#54 0x7de68d78 in ?? ()
#55 0x7de6b8c0 in ?? ()
#56 0xcfbcc4c0 in ?? ()
#57 0x7de68d78 in ?? ()
#58 0x29aca2be in __func__.6 () from /usr/local/lib/libchicken.so
#59 0xcfbcc25c in ?? ()
#60 0x09d3084c in C_apply (c=4, closure=0, k=2112272576, fn=2112261496) at 
runtime.c:6092
#61 0x09b170f4 in f_7440 (c=2, t0=-809712676, t1=22) at library.c:28937
#62 0x09b16ace in f_7464 (t1=-809712676, t2=2112248048, t3=1) at library.c:28808
#63 0x09b16c2d in f_7509 (c=2, t0=-809712852, t1=2112264588) at library.c:28840
#64 0x09aec745 in f_14880 (c=2, t0=2112261468, t1=-809712852) at library.c:16386
#65 0x09b16bfb in f_7464 (t1=-809712676, t2=2112248048, t3=3) at library.c:28830
#66 0x09b170bd in f_7436r (t0=2112248060, t1=2112272576, t2=-809712548) at 
library.c:28930
#67 0x09b16fba in f_7436 (c=3, t0=2112248060, t1=2112272576) at library.c:28909
#68 0x0376f5dd in f_1034r () from /usr/local/lib/chicken/3/http-server.so
#69 0x0376f582 in f_1034 () from /usr/local/lib/chicken/3/http-server.so
#70 0x09d30a66 in C_do_apply (n=1, fn=2112272560, k=2112272576) at 
runtime.c:6228
#71 0x09d43401 in values_continuation (c=0, closure=2112271948, arg0=30) at 
runtime.c:6430
#72 0x09ba03ce in f_3077 (c=2, t0=2112376400, t1=30) at extras.c:2106
#73 0x09b9f646 in f_3105 (t0=2112376484, t1=2112376400) at extras.c:1877
#74 0x09ba0311 in f_3118 (c=2, t0=-809711444, t1=30) at extras.c:2088
#75 0x09b11a98 in f_8231 (c=2, t0=-809711556, t1=30) at library.c:27257
#76 0x09b15f34 in f_19156 (c=3, t0=2112259500, t1=-809711556, t2=2112203204) at 
library.c:28549
#77 0x09b11a73 in f_8227 (c=3, t0=2112212116, t1=-809711444, t2=2112203204) at 
library.c:27249
---Type <return> to continue, or q <return> to quit---
#78 0x09b9fc1e in f_3105 (t0=2112376484, t1=2112376400) at extras.c:1923
#79 0x09ba0311 in f_3118 (c=2, t0=-809710100, t1=30) at extras.c:2088
#80 0x09b160f2 in f_19144 (c=4, t0=2112259464, t1=-809710100, t2=2112203204, 
t3=2570) at library.c:28585
#81 0x09afe48d in f_11656 (c=4, t0=2112202536, t1=-809710100, t2=2570, 
t3=2112203204) at library.c:21856
#82 0x09afe3fa in f_11673 (c=2, t0=-809710468, t1=2112203204) at library.c:21841
#83 0x09b152b8 in f_7724 (c=2, t0=-809710804, t1=30) at library.c:28318
#84 0x09b1528d in f_7721 (c=2, t0=-809710580, t1=30) at library.c:28310
#85 0x09b1561d in f_7665r (t0=2112203004, t1=-809710580, t2=2112203204, 
t3=-809710676) at library.c:28382
#86 0x09b155aa in f_7665 (c=3, t0=2112203004, t1=-809710580, t2=2112203204) at 
library.c:28369
#87 0x09b1519e in f_7717 (c=4, t0=2112223628, t1=-809710468, t2=2112203204, 
t3=2112182020) at library.c:28293
#88 0x09afe399 in f_11669 (c=4, t0=2112224344, t1=-809710100, t2=2570, 
t3=2112203204) at library.c:21830
#89 0x09afdee9 in f_11722 (c=2, t0=-809710324, t1=2112203204) at library.c:21744
#90 0x09afde7a in f_11718r (t0=2112201864, t1=-809710100, t2=-809710228) at 
library.c:21731
#91 0x09afddc9 in f_11718 (c=3, t0=2112201864, t1=-809710100) at library.c:21715
#92 0x09b9fd71 in f_3105 (t0=2112376484, t1=2112376400) at extras.c:1939
#93 0x09ba0311 in f_3118 (c=2, t0=-809709540, t1=30) at extras.c:2088
#94 0x09b160f2 in f_19144 (c=4, t0=2112259464, t1=-809709540, t2=2112203204, 
t3=23818) at library.c:28585
#95 0x09afe48d in f_11656 (c=4, t0=2112202536, t1=-809709540, t2=23818, 
t3=2112203204) at library.c:21856
#96 0x09b9fe99 in f_3105 (t0=2112376484, t1=2112376400) at extras.c:1953
#97 0x09ba0311 in f_3118 (c=2, t0=2112376324, t1=30) at extras.c:2088
#98 0x09ba03ce in f_3077 (c=2, t0=2112376244, t1=30) at extras.c:2106
#99 0x09b9f646 in f_3105 (t0=2112376268, t1=2112376244) at extras.c:1877
#100 0x09ba0311 in f_3118 (c=2, t0=-809708452, t1=30) at extras.c:2088
#101 0x09b160f2 in f_19144 (c=4, t0=2112259464, t1=-809708452, t2=2112203204, 
t3=11786) at library.c:28585
#102 0x09afe48d in f_11656 (c=4, t0=2112202536, t1=-809708452, t2=11786, 
t3=2112203204) at library.c:21856
#103 0x09b9fe99 in f_3105 (t0=2112376268, t1=2112376244) at extras.c:1953
#104 0x09ba0311 in f_3118 (c=2, t0=-809707892, t1=30) at extras.c:2088
#105 0x09b160f2 in f_19144 (c=4, t0=2112259464, t1=-809707892, t2=2112203204, 
t3=25610) at library.c:28585
#106 0x09afe48d in f_11656 (c=4, t0=2112202536, t1=-809707892, t2=25610, 
t3=2112203204) at library.c:21856
#107 0x09b9fe99 in f_3105 (t0=2112376268, t1=2112376244) at extras.c:1953
#108 0x09ba0311 in f_3118 (c=2, t0=-809707332, t1=30) at extras.c:2088
#109 0x09b160f2 in f_19144 (c=4, t0=2112259464, t1=-809707332, t2=2112203204, 
t3=25866) at library.c:28585
#110 0x09afe48d in f_11656 (c=4, t0=2112202536, t1=-809707332, t2=25866, 
t3=2112203204) at library.c:21856
#111 0x09b9fe99 in f_3105 (t0=2112376268, t1=2112376244) at extras.c:1953
#112 0x09ba0311 in f_3118 (c=2, t0=-809706772, t1=30) at extras.c:2088
#113 0x09b160f2 in f_19144 (c=4, t0=2112259464, t1=-809706772, t2=2112203204, 
t3=26634) at library.c:28585
#114 0x09afe48d in f_11656 (c=4, t0=2112202536, t1=-809706772, t2=26634, 
t3=2112203204) at library.c:21856
#115 0x09b9fe99 in f_3105 (t0=2112376268, t1=2112376244) at extras.c:1953
#116 0x09ba0311 in f_3118 (c=2, t0=-809706212, t1=30) at extras.c:2088
---Type <return> to continue, or q <return> to quit---
#117 0x09b160f2 in f_19144 (c=4, t0=2112259464, t1=-809706212, t2=2112203204, 
t3=29450) at library.c:28585
#118 0x09afe48d in f_11656 (c=4, t0=2112202536, t1=-809706212, t2=29450, 
t3=2112203204) at library.c:21856
#119 0x09b9fe99 in f_3105 (t0=2112376268, t1=2112376244) at extras.c:1953
#120 0x09ba0311 in f_3118 (c=2, t0=-809705652, t1=30) at extras.c:2088
#121 0x09b160f2 in f_19144 (c=4, t0=2112259464, t1=-809705652, t2=2112203204, 
t3=26890) at library.c:28585
#122 0x09afe48d in f_11656 (c=4, t0=2112202536, t1=-809705652, t2=26890, 
t3=2112203204) at library.c:21856
#123 0x09b9fe99 in f_3105 (t0=2112376268, t1=2112376244) at extras.c:1953
#124 0x09ba0311 in f_3118 (c=2, t0=-809705092, t1=30) at extras.c:2088
#125 0x09b160f2 in f_19144 (c=4, t0=2112259464, t1=-809705092, t2=2112203204, 
t3=28170) at library.c:28585
#126 0x09afe48d in f_11656 (c=4, t0=2112202536, t1=-809705092, t2=28170, 
t3=2112203204) at library.c:21856
#127 0x09b9fe99 in f_3105 (t0=2112376268, t1=2112376244) at extras.c:1953
#128 0x09ba0311 in f_3118 (c=2, t0=-809704532, t1=30) at extras.c:2088
#129 0x09b160f2 in f_19144 (c=4, t0=2112259464, t1=-809704532, t2=2112203204, 
t3=26890) at library.c:28585
#130 0x09afe48d in f_11656 (c=4, t0=2112202536, t1=-809704532, t2=26890, 
t3=2112203204) at library.c:21856
#131 0x09b9fe99 in f_3105 (t0=2112376268, t1=2112376244) at extras.c:1953
#132 0x09ba0311 in f_3118 (c=2, t0=-809703972, t1=30) at extras.c:2088
#133 0x09b160f2 in f_19144 (c=4, t0=2112259464, t1=-809703972, t2=2112203204, 
t3=26122) at library.c:28585
#134 0x09afe48d in f_11656 (c=4, t0=2112202536, t1=-809703972, t2=26122, 
t3=2112203204) at library.c:21856
#135 0x09b9fe99 in f_3105 (t0=2112376268, t1=2112376244) at extras.c:1953
#136 0x09b9aad2 in trf_3105 (dummy=0x0) at extras.c:652
#137 0x09d26833 in CHICKEN_run (toplevel=0x0) at runtime.c:1364
#138 0x09d247bd in CHICKEN_main (argc=1, argv=0xcfbce818, toplevel=0x1c000e0a) 
at runtime.c:577
#139 0x1c000dee in main (argc=-809703400, argv=0x1c000e0a) at http-test.c:85
(gdb) q
The program is running.  Exit anyway? (y or n) y


--------------------------------------------------

This is a bug report generated by chicken-bug(1).

Date:   Mon Feb 23 19:43:43 2009


User information:       ("taylor" "*" 1000 10 "" "/home/taylor" 
"/usr/local/bin/bash")

Host information:

        machine type:   x86
        software type:  unix
        software version:       openbsd
        build platform: gnu

CHICKEN version is:
Version 3.5.0 - openbsd-unix-gnu-x86    [ manyargs ptables applyhook ]
SVN rev. 13389  compiled 2009-02-23 on zeltennia.metasyntax.net (OpenBSD)

Home directory: /usr/local/share/chicken

Include path:   ("/usr/local/share/chicken")

Features:

  applyhook       chicken         data-structures extras          files         
  
  gnu             irregex         little-endian   manyargs        openbsd       
  
  ports           posix           ptables         regex           srfi-0        
  
  srfi-10         srfi-12         srfi-13         srfi-14         srfi-17       
  
  srfi-2          srfi-23         srfi-28         srfi-30         srfi-39       
  
  srfi-55         srfi-6          srfi-61         srfi-62         srfi-69       
  
  srfi-8          srfi-9          tcp             unix            utils         
  
  x86             

chicken-config.h:

#define HAVE_DIRENT_H 1
#define HAVE_DLFCN_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LONG_LONG 1
#define HAVE_MEMMOVE 1
#define HAVE_MEMORY_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRERROR 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_STRTOLL 1
#define HAVE_STRTOQ 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNSIGNED_LONG_LONG 1
#define STDC_HEADERS 1
#define HAVE_ALLOCA 1
#define HAVE_ALLOCA_H 1
#define HAVE_GRP_H 1
#define HAVE_ERRNO_H 1
#define HAVE_SYSEXITS_H 1
#define C_STACK_GROWS_DOWNWARD 1
#define C_HACKED_APPLY
/* generated */
#define C_BUILD_TAG "compiled 2009-02-23 on zeltennia.metasyntax.net (OpenBSD)"
#define C_SVN_REVISION 13389
#ifndef C_INSTALL_CC
# define C_INSTALL_CC "gcc"
#endif
#ifndef C_INSTALL_CXX
# define C_INSTALL_CXX "g++"
#endif
#ifndef C_INSTALL_CFLAGS
# define C_INSTALL_CFLAGS "-fno-strict-aliasing -DHAVE_CHICKEN_CONFIG_H -Os 
-fomit-frame-pointer"
#endif
#ifndef C_INSTALL_LDFLAGS
# define C_INSTALL_LDFLAGS " "
#endif
#ifndef C_INSTALL_SHARE_HOME
# define C_INSTALL_SHARE_HOME "/usr/local/share/chicken"
#endif
#ifndef C_INSTALL_BIN_HOME
# define C_INSTALL_BIN_HOME "/usr/local/bin"
#endif
#ifndef C_INSTALL_EGG_HOME
# define C_INSTALL_EGG_HOME "/usr/local/lib/chicken/3"
#endif
#ifndef C_INSTALL_LIB_HOME
# define C_INSTALL_LIB_HOME "/usr/local/lib"
#endif
#ifndef C_INSTALL_STATIC_LIB_HOME
# define C_INSTALL_STATIC_LIB_HOME "/usr/local/lib"
#endif
#ifndef C_INSTALL_INCLUDE_HOME
# define C_INSTALL_INCLUDE_HOME "/usr/local/include"
#endif
#ifndef C_INSTALL_MORE_LIBS
# define C_INSTALL_MORE_LIBS "-lm"
#endif
#ifndef C_INSTALL_MORE_STATIC_LIBS
# define C_INSTALL_MORE_STATIC_LIBS "-lm"
#endif
#ifndef C_DEFAULT_TARGET_STACK_SIZE
# define C_DEFAULT_TARGET_STACK_SIZE (128*1024)
#endif
#ifndef C_STACK_GROWS_DOWNWARD
# define C_STACK_GROWS_DOWNWARD 1
#endif
#ifndef C_TARGET_MORE_LIBS
# define C_TARGET_MORE_LIBS "-lm"
#endif
#ifndef C_TARGET_MORE_STATIC_LIBS
# define C_TARGET_MORE_STATIC_LIBS "-lm"
#endif
#ifndef C_TARGET_CC
# define C_TARGET_CC "gcc"
#endif
#ifndef C_TARGET_CXX
# define C_TARGET_CXX "g++"
#endif
#ifndef C_TARGET_CFLAGS
# define C_TARGET_CFLAGS "-fno-strict-aliasing -DHAVE_CHICKEN_CONFIG_H -Os 
-fomit-frame-pointer"
#endif
#ifndef C_TARGET_LDFLAGS
# define C_TARGET_LDFLAGS " "
#endif
#ifndef C_CROSS_CHICKEN
# define C_CROSS_CHICKEN 0
#endif
#ifndef C_TARGET_LIB_HOME
# define C_TARGET_LIB_HOME "/usr/local/lib"
#endif
#ifndef C_TARGET_RUN_LIB_HOME
# define C_TARGET_RUN_LIB_HOME "/usr/local/lib"
#endif
#ifndef C_TARGET_SHARE_HOME
# define C_TARGET_SHARE_HOME "/usr/local/share"
#endif
#ifndef C_TARGET_INCLUDE_HOME
# define C_TARGET_INCLUDE_HOME "/usr/local/include"
#endif
#ifndef C_TARGET_STATIC_LIB_HOME
# define C_TARGET_STATIC_LIB_HOME "/usr/local/lib"
#endif
#ifndef C_CHICKEN_PROGRAM
# define C_CHICKEN_PROGRAM "chicken"
#endif
#ifndef C_CSC_PROGRAM
# define C_CSC_PROGRAM "csc"
#endif
#ifndef C_CSI_PROGRAM
# define C_CSI_PROGRAM "csi"
#endif
#ifndef C_CHICKEN_PROFILE_PROGRAM
# define C_CHICKEN_PROFILE_PROGRAM "chicken-profile"
#endif
#ifndef C_CHICKEN_SETUP_PROGRAM
# define C_CHICKEN_SETUP_PROGRAM "chicken-setup"
#endif
#ifndef C_CHICKEN_BUG_PROGRAM
# define C_CHICKEN_BUG_PROGRAM "chicken-bug"
#endif
#ifndef C_BINARY_VERSION
# define C_BINARY_VERSION 3
#endif

CC seems to be gcc, trying to obtain version...

Reading specs from /usr/lib/gcc-lib/i386-unknown-openbsd4.5/3.3.5/specs
Configured with: 
Thread model: single
gcc version 3.3.5 (propolice)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]