Changeset 1462

Show
Ignore:
Timestamp:
12/21/09 21:43:58 (3 months ago)
Author:
ahu
Message:

close ticket 239, 'make clean in recursor deletes optimization files', plus update documentation about make binclean & 64-bit performance.
Thanks to Stefan Schmidt for noticing.

Location:
trunk/pdns/pdns
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/pdns/pdns/Makefile-recursor

    r1431 r1462  
    8282        $(OS_SPECIFIC_INSTALL)   
    8383 
    84 clean: 
    85         -rm -f dep *.o *~ pdns_recursor rec_control *.gcda *.gcno optional/*.gcda optional/*.gcno optional/*.o 
     84clean: binclean 
     85        -rm -f dep *~ *.gcda *.gcno optional/*.gcda optional/*.gcno 
     86 
     87binclean: 
     88        -rm -f *.o  pdns_recursor rec_control optional/*.o 
    8689         
    8790dep: 
  • trunk/pdns/pdns/README-recursor

    r1396 r1462  
    6363PERFORMANCE 
    6464----------- 
     65When on Intel/AMD, by ALL means use a 64-bit binary (not just a 64-bit 
     66kernel). This speeds up most things by at least a factor 2. 
    6567 
    6668For the utmost in performance, compile like this: 
     
    7678Then do: 
    7779 
    78    $ PROFILEFLAGS=-fprofile-use make clean all 
     80   $ PROFILEFLAGS=-fprofile-use make binclean all 
    7981 
    8082The resulting binary is up to 20% faster in our tests.