Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updates to the MacOS makefile. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
03f1783d7e25692a3e1b0c40a7971af6 |
User & Date: | drh 2024-11-06 17:44:06.665 |
Context
2024-11-07
| ||
13:42 | Change the wapp-crash-handler interface so that it takes no arguments. (check-in: e5fa3551e4 user: drh tags: trunk) | |
2024-11-06
| ||
17:44 | Updates to the MacOS makefile. (check-in: 03f1783d7e user: drh tags: trunk) | |
17:09 | If a command named "wapp-crash-handler" exists and an application error occurs, invoke the wapp-crash-handler command to generate the error message. (check-in: f7b5b7566a user: drh tags: trunk) | |
Changes
Changes to Makefile.macos.
1 2 3 | #!/usr/bin/make CC = gcc -O0 -framework CoreFoundation | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/make CC = gcc -O0 -framework CoreFoundation TCLLIB = /Users/drh/tcl/tcl9/lib/libtcl9.0.a -lm -lz -lpthread -ldl TCLINC = /Users/drh/tcl/tcl9/include TCLSH = /Users/drh/tcl/tcl9/bin/tclsh9.0 all: wapptclsh wapptclsh: wapptclsh.c $(CC) -I. -I$(TCLINC) -o $@ wapptclsh.c $(TCLLIB) wapptclsh.c: wapptclsh.c.in wapp.tcl wapptclsh.tcl tclsqlite3.c mkccode.tcl |
︙ | ︙ |