Nathanael Demacon
Nathanael Demacon
Hi :) It's still working fine for me. Maybe there is a case I'm not handling properly. Do you have any error in the console?
Running a dry-run using `make run-noaccel -n`, here's the concerned command: ```bash echo "LD /Users/qtmsheep/Development/nanos/output/platform/pc/boot/bin/stage2.elf"; x86_64-elf-ld -L/usr/local/opt/ncurses/lib -L/usr/local/opt/qt/lib -L/usr/local/opt/gstreamer/lib -L/usr/local/opt/gst-plugins-base/lib -L/usr/local/opt/freeglut/lib -L/usr/local/opt/openssl/lib --gc-sections -n --undefined=_start -T linker_script --gc-sections -n -T...
I got it building by changing `LDFLAGS+=` to `LDFLAGS=` here: https://github.com/nanovms/nanos/blob/430a9fe3c97abed247ee50ccfecf3217eadf34b2/platform/pc/boot/Makefile#L39 It will need further reviewing as it doesn't seem like a great way of solving the issue 🙃
@sanderssj Big Sur 11.4
### pkgutil --pkg-info=com.apple.pkg.CLTools_Executables ```bash No receipt for 'com.apple.pkg.CLTools_Executables' found at '/'. ``` ### pkgutil --pkg-info=com.apple.pkg.CLTools_SDK_macOS110 ```bash No receipt for 'com.apple.pkg.CLTools_SDK_macOS110' found at '/'. ``` ### xcode-select -p ```bash /Applications/Xcode.app/Contents/Developer ```...
Any update on this?
When is the update for 1.6, I expected !
Seems like `__builtin_choose_expr` is available at least since MSVC 19.0. For `__builtin_types_compatible_p` we could use `_Generic` like so: ```c #define __builtin_types_compatible_p(T1, T2) _Generic(T1{}, T2: 1, default: 0) ``` This solution...
Hey :) I fixed this in PR #86 2 days ago.
It's supposed to be already included, I'm using it locally. It doesn't work on your side?