Overview
Comment: | configure: Add missing OBJFW_CPPFLAGS for Switch |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5b6a00a2775d12b036545d612a2c555a |
User & Date: | js on 2022-07-31 14:15:49 |
Other Links: | manifest | tags |
Context
2022-07-31
| ||
20:10 | Add OFMemoryStream check-in: e291e6e982 user: js tags: trunk | |
14:16 | Merge trunk into branch "wii-u" check-in: e10048ac32 user: js tags: wii-u | |
14:15 | configure: Add missing OBJFW_CPPFLAGS for Switch check-in: 5b6a00a277 user: js tags: trunk | |
14:06 | Add initial support for Nintendo Switch check-in: f2d9ec1868 user: js tags: trunk | |
Changes
Modified configure.ac from [25392354e3] to [eeebcf4cfa].
︙ | ︙ | |||
252 253 254 255 256 257 258 259 260 261 262 263 264 265 | AC_MSG_ERROR([DEVKITPRO is not set! Please set DEVKITPRO.]) ]) flags="-march=armv8-a+crc+crypto -mtune=cortex-a57 -mtp=soft -fPIE" OBJCFLAGS="$OBJCFLAGS $flags" OBJFW_OBJCFLAGS="$OBJFW_OBJCFLAGS $flags" CPPFLAGS="$CPPFLAGS -D__SWITCH__ -I$DEVKITPRO/libnx/include" ASFLAGS="$ASFLAGS $flags" LDFLAGS="$LDFLAGS -specs=$DEVKITPRO/libnx/switch.specs $flags" LIBS="$LIBS -L$DEVKITPRO/libnx/lib -lnx" enable_shared="no" enable_threads="no" # TODO enable_sockets="no" # TODO check_pedantic="no" | > | 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | AC_MSG_ERROR([DEVKITPRO is not set! Please set DEVKITPRO.]) ]) flags="-march=armv8-a+crc+crypto -mtune=cortex-a57 -mtp=soft -fPIE" OBJCFLAGS="$OBJCFLAGS $flags" OBJFW_OBJCFLAGS="$OBJFW_OBJCFLAGS $flags" CPPFLAGS="$CPPFLAGS -D__SWITCH__ -I$DEVKITPRO/libnx/include" OBJFW_CPPFLAGS="$OBJFW_CPPFLAGS -D__SWITCH__ -I$DEVKITPRO/libnx/include" ASFLAGS="$ASFLAGS $flags" LDFLAGS="$LDFLAGS -specs=$DEVKITPRO/libnx/switch.specs $flags" LIBS="$LIBS -L$DEVKITPRO/libnx/lib -lnx" enable_shared="no" enable_threads="no" # TODO enable_sockets="no" # TODO check_pedantic="no" |
︙ | ︙ |