Ryan Carsten Schmidt
Ryan Carsten Schmidt
Please support the standard `DESTDIR` variable in your Makefile. If I run ``` sudo make install DESTDIR=/tmp/root ``` then I would expect the files to get installed in ``` /tmp/root/usr/local/bin/searchfs...
I am trying to use Retro68 to compile a third-party library for use in my project, and it failed when that third-party library included string.h, which wants to include strings.h...
Retro68 fails to build with boost 1.79: ``` LaunchAPPL/Client/SharedFile.cc:51:21: error: expected ';' after expression fs::ofstream out(shared_directory / "in_channel_1", std::ios::binary); ^ ; LaunchAPPL/Client/SharedFile.cc:51:13: error: no member named 'ofstream' in namespace 'boost::filesystem'...
build-toolchain.bash uses `--disable-doc` when configuring binutils for 68k or powerpc. Does this actually do anything? I cannot find this arg described in `binutils/configure --help`. I tried building binutils with and...
I would like to package the Retro68 68k and powerpc compilers separately in MacPorts, so that a user who only wants one or the other only needs to download what...
I find it confusing that most of the Boolean conditionals in build-toolchain.bash check whether a variable `!= false ` or `!= true `. It would be more straightforward to check...
The build system uses the C compiler as the linker and adds the flag `-lstdc++`, for example: ``` /usr/bin/clang objects/gui.o -lstdc++ -L/opt/local/lib -lsmooth-0.9 -L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -arch x86_64 -o bin/freac...
I'm trying to add a custom authentication method to cartman, but so far I'm stuck at: ``` requests.exceptions.TooManyRedirects: Exceeded 30 redirects. ``` Can something be added to cartman—a verbose or...
The source code is confusing because it uses the term "query string" to refer to the portion after the hostname and before the "?". This is commonly referred to as...
Looks like Hoard's Makefile and GNUmakefile clone master of Heap-Layers. Unless you never change Heap-Layers, it seems likely that at some point you will introduce a change to Heap-Layers that...