Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
-
82bf2c72
by Raymond Toy at 2018-08-25T23:51:54Z
2 changed files:
Changes:
| ... | ... | @@ -83,7 +83,7 @@ case $uname_s in |
| 83 | 83 |
hp700*) motif_variant=hpux_cc ;;
|
| 84 | 84 |
pmax_mach) motif_variant=pmax_mach ;;
|
| 85 | 85 |
sgi*) motif_variant=irix ;;
|
| 86 |
- x86_linux|linux*) motif_variant=x86 ;;
|
|
| 86 |
+ x86_linux*|linux*) motif_variant=x86 ;;
|
|
| 87 | 87 |
esac
|
| 88 | 88 |
}
|
| 89 | 89 |
[ -f src/motif/server/Config.$motif_variant ] || quit "No such motif-variant could be found: Config.$motif_variant"
|
| 1 |
+# -*- Mode: makefile -*-
|
|
| 2 |
+include Config.x86_common
|
|
| 3 |
+ |
|
| 4 |
+CC = clang
|
|
| 5 |
+CPPFLAGS += -m32 -D__NO_CTYPE -D_GNU_SOURCE
|
|
| 6 |
+CFLAGS += -march=pentium4 -mfpmath=sse -mtune=generic
|
|
| 7 |
+ |
|
| 8 |
+UNDEFSYMPATTERN = -Xlinker -u -Xlinker &
|
|
| 9 |
+ASSEM_SRC += linux-stubs.S
|
|
| 10 |
+OS_SRC += Linux-os.c elf.c
|
|
| 11 |
+OS_LIBS = -ldl
|
|
| 12 |
+OS_LINK_FLAGS = -m32 -rdynamic -Xlinker --export-dynamic -Xlinker -Map -Xlinker foo
|
|
| 13 |
+OS_LINK_FLAGS += -Wl,-z,noexecstack
|
|
| 14 |
+ |
|
| 15 |
+EXEC_FINAL_OBJ = exec-final.o
|