mirror of
https://github.com/simh/simh.git
synced 2026-04-26 12:07:16 +00:00
makefile: Defaults now show summary build commands and separate module compiles
- Invoking make with QUIET=0 (or in an exported environment variable) will display the full compile and link commands executed. - Invoking make with BUILD_SEPARATE=0 will cause each simulator being built to be built with a single compile and link command. This is how things were previously, but now the default has been changed to more easily support active simulator development by compiling files that have changed. - Silence link time warning on macOS - cleanup C++ support for ND100 and C++ builds of other simulators
This commit is contained in:
@@ -710,7 +710,7 @@ int Shift_Digits(t_int64 * d, int nDigits)
|
||||
*/
|
||||
uint16 *deck_alloc(int nCards)
|
||||
{
|
||||
return malloc(nCards * 80 * sizeof(uint16));
|
||||
return (uint16 *)malloc(nCards * 80 * sizeof(uint16));
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user