Overview
| Comment: | Work around a bug in GNU windres |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
31c277d1d9e5bcf7b46c3c750a19ac5e |
| User & Date: | js on 2022-10-14 21:34:39 |
| Other Links: | manifest | tags |
Context
|
2022-10-14
| ||
| 21:42 | README.md: Recommend CLANG64/CLANG32 for MSYS2 (check-in: 4170c39898 user: js tags: trunk) | |
| 21:34 | Work around a bug in GNU windres (check-in: 31c277d1d9 user: js tags: trunk) | |
| 19:46 | Document more exceptions (check-in: ee3632817a user: js tags: trunk) | |
Changes
Modified src/Makefile from [b01203566b] to [bbebb28fe1].
| ︙ | |||
236 237 238 239 240 241 242 | 236 237 238 239 240 241 242 243 244 245 246 247 | + - + - + |
CPPFLAGS += -I. -I.. -Iexceptions -Iruntime
LD = ${OBJC}
FRAMEWORK_LIBS := -Fruntime \
${RUNTIME_FRAMEWORK_LIBS} \
${REEXPORT_RUNTIME_FRAMEWORK} \
${LIBS}
LIBS := -Lruntime ${RUNTIME_LIBS} ${REEXPORT_RUNTIME} ${LIBS}
RCFLAGS = --use-temp-file \
|
Modified src/runtime/Makefile from [b003947888] to [23dfac9b53].
| ︙ | |||
54 55 56 57 58 59 60 | 54 55 56 57 58 59 60 61 62 63 64 65 | + - + - + |
-DOBJC_COMPILING_RUNTIME \
-DOBJFWRT_AMIGA_LIB=\"${OBJFWRT_AMIGA_LIB}\" \
-DOBJFWRT_LIB_MAJOR=${OBJFWRT_LIB_MAJOR} \
-DOBJFWRT_LIB_MINOR=${OBJFWRT_LIB_MINOR}
AMIGA_LIB_CFLAGS += -DOBJC_COMPILING_AMIGA_LIBRARY
LD = ${OBJC}
FRAMEWORK_LIBS = ${LIBS}
RCFLAGS = --use-temp-file \
|