Davor Ocelic

Results 64 issues of Davor Ocelic

There is a bit of overlap between clang/find_clang.cr and clang/CMakeLists.txt. find_clang supports finding the clang++ binary, but this is redundant as CMake will figure it out and call find_clang with...

enhancement

spec_helper.cr needs access to the cxxflags variable which is determined when the clang tool (subdir `clang/` runs). Currently, the tool dumps variables to `Makefile.variables`, in Makefile format, and spec_helper reads...

enhancement

In files find_clang.cr autogenerates, header should be verified to exist which explains that the file was autogenerated and by which file/script.

enhancement

Creating the issue to keep track of a better/cleaner equivalent of commit: https://github.com/Papierkorb/bindgen/pull/34/commits/4012779e2c50c355a4a7aad538b33001d7a77777 The issue itself, for which this is a patch, is described/mentioned in https://github.com/Papierkorb/bindgen/issues/26 .

enhancement

Currently, CMake calls find_clang.cr 3 times and also parses its stdout. This causes the cmake run time to be longer than needed, and also it makes find_clang.cr unable to print...

enhancement

Trying to compile bindgen on Windows produces first error in find_clang.cr on: ``` UNAME_S = `uname -s`.chomp ```

bug
help wanted

Hello @acoolstraw, @dscottboggs , @kalinon , @glenux , @ZaWertun, @gilmartaj, @codenoid, @foliea Same as for bindgen (https://github.com/Papierkorb/bindgen/issues/23), I would like to work on qt5.cr so that it builds/works again. Any...

While 5.13 works, 5.12 results in 2 errors: 1) qt-everywhere-src-5.12.0/qtbase/src/corelib/global/qrandom.cpp:455:62: error: no matching function for call to ‘std::mersenne_twister_engine::mersenne_twister_engine(QRandomGenerator::SystemGenerator&)’ 455 | new (&rng->storage.engine()) RandomEngine(self()->sys); In file included from /usr/include/c++/9/random:49, from download_cache/qt-everywhere-src-5.12.0/qtbase/src/corelib/global/qrandom.h:45,...

bug
enhancement

Initial output of trying to build for Qt 5.14: => Generating bindings for all platforms (1/1) Generating linux-gnu-x86_64-qt5.14 Invalid alias name "QAbstractSpinBox::StepType" at Qt::Binding::QAbstractSpinBox::StepType Invalid alias name "Qt::HighDpiScaleFactorRoundingPolicy" at Qt::Binding::Qt::HighDpiScaleFactorRoundingPolicy...

bug
enhancement

Hello, The docs and tests show pagination on a single Sequelize model. But is it possible to paginate on model associations like `author.getBooks()`? (In node's GraphQL implementation of connections it...