Short (72 chars or less) summary
More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).
Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
| targets := prog.exe my_library.dll my_plugin.dll | |
| CXX := g++ | |
| CXXFLAGS := -c -g -O0 -MMD -pedantic -Wall -Wextra -Wconversion -Wno-unused -Wno-unused-parameter -Werror -Wfatal-errors -UNDEBUG -std=c++17 -Wno-missing-braces -Wno-sign-conversion | |
| all: $(targets) | |
| .PHONY: all | |
| %.dll: %.o |
You can use ldd to view dependencies, then copy the related dll: https://web.archive.org/web/20240620214721/https://janw.name/posts/3-msys2-dlls/
Here is an example makefile (please use the code in solution https://stackoverflow.com/a/60906375/12291425, or use this gist):
it can save a hassle; create a file named GNUmakefile or Makefile and paste the content, then run make dist:
targets := prog.exe my_library.dll my_plugin.dllVue v-if and ref build error: Property 'value' does not exist on type 'boolean'. Did you mean 'valueOf'?
I've created a simple vue page with the code below: Vue link
however, when building, I've got an error:
I've tried to change "
I change an iso file default open program to C:\Windows\explorer.exe , and I can't change it back. (Try this in virtual machine, not real computer.) How to change it? My OS is Windows 7.
Tried this, but after I change it, the .iso extension disappears from the list.
I tried the registry, change Windows.IsoFile entry's shell->open value, and rebooted, but it didn't work, too
Recently I find that Windows mouse cursor is not very friently for left-handed people. Because it point from right to left.
So I wonder if there is a way to change it to "left to right". I searched the internet but havnen't found one.
Further search give me a message that the "cur" file format is a derivation of the "ico" format: https://en.wikipedia.org/wiki/ICO_(file_format)
So I think if we can flip it programatically.
I followed https://craftinginterpreters.com/functions.html and function call is implemented.
The interpreter can interpret block like this:
fun deco(func) {
fun impl() {
print "start" + func;
func();
