mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
DOS: Link against DJGPP's libemu to support FPU emulation.
This way xz should work on 386SX and 486SX. Floating point only is needed for verbose output in xz.
This commit is contained in:
parent
203edff4c7
commit
f55db9c187
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ CC = gcc
|
||||||
STRIP = strip
|
STRIP = strip
|
||||||
CPPFLAGS =
|
CPPFLAGS =
|
||||||
CFLAGS = -g -Wall -Wextra -Wfatal-errors -march=i386 -mtune=i686 -O2
|
CFLAGS = -g -Wall -Wextra -Wfatal-errors -march=i386 -mtune=i686 -O2
|
||||||
LDFLAGS =
|
LDFLAGS = -lemu
|
||||||
|
|
||||||
# NOTE: -fgnu89-inline is needed on DJGPP 2.04 beta and GCC >= 4.3.0
|
# NOTE: -fgnu89-inline is needed on DJGPP 2.04 beta and GCC >= 4.3.0
|
||||||
# because time.h uses GNU-style "extern inline".
|
# because time.h uses GNU-style "extern inline".
|
||||||
|
|
Loading…
Reference in a new issue