Changeset 1064 in MondoRescue for branches/stable/mondo/src/test/mktest


Ignore:
Timestamp:
Jan 23, 2007, 1:09:32 AM (17 years ago)
Author:
Bruno Cornec
Message:

More controls at the compiler level
still working with the problems around variable arguments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/test/mktest

    r1054 r1064  
    77
    88lib="../lib/mr_conf.c ../lib/mr_msg.c ../lib/mr_err.c ../lib/mr_mem.c"
     9OPT="-Wall -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_REENTRANT -Wstrict-prototypes -Wshadow -funsigned-char -Wunused -Winit-self -Wcast-align -O2 -g -I../common -I../include"
    910
    1011echo "Generating test-msg"
    11 gcc -O2 -g -I../common -I../include test-msg.c $lib -o test-msg
     12gcc $OPT test-msg.c $lib -o test-msg
    1213echo "Generating test-string"
    13 gcc -O2 -g -I../common -I../include test-string.c ../lib/mr_str.c $lib -o test-string
     14gcc $OPT test-string.c ../lib/mr_str.c $lib -o test-string
    1415echo "Generating test-conf"
    15 gcc -O2 -g -I../common -I../include test-conf.c $lib -o test-conf
     16gcc $OPT test-conf.c $lib -o test-conf
    1617
    1718for f in test-conf test-string test-msg; do
Note: See TracChangeset for help on using the changeset viewer.