50-djgpp.conf 611 B

1234567891011121314151617
  1. # We can't make any commitment to support the DJGPP platform,
  2. # and rely entirely on the OpenSSL community to help is fine
  3. # tune and test.
  4. my %targets = (
  5. "DJGPP" => {
  6. CC => "gcc",
  7. CFLAGS => "-fomit-frame-pointer -O2 -Wall",
  8. cflags => "-I/dev/env/WATT_ROOT/inc -DTERMIOS -DL_ENDIAN",
  9. sys_id => "MSDOS",
  10. lflags => add("-L/dev/env/WATT_ROOT/lib"),
  11. ex_libs => add("-lwatt"),
  12. bn_ops => "BN_LLONG",
  13. asm_arch => 'x86',
  14. perlasm_scheme => "a.out",
  15. },
  16. );