Coder Social home page Coder Social logo

rochus-keller / leancreator Goto Github PK

View Code? Open in Web Editor NEW
122.0 122.0 3.0 9.47 MB

LeanCreator is a stripped-down version of Qt Creator, easy to build from source on all platforms supported by LeanQt and using BUSY instead of qmake.

License: Other

C++ 69.61% C 27.85% Objective-C++ 0.08% QMake 0.38% Python 2.08% CSS 0.01%

leancreator's People

Contributors

rochus-keller avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

leancreator's Issues

Segfault for linux_x64

I've just downloaded http://software.rochus-keller.ch/leancreator_linux_x64.tar.gz, extracted it, and attempted to run it; it segfaults immediately.

What do I need to do to make it run successfully?

Are there any dependencies I have to install before running it for the first time?

Specs:

OS / Distro: GNU / Linux Debian testing 64-bit
   Compiler: gcc (Debian 12.2.0-14) 12.2.0

BUSY Hello World project template

This the the BUSY build script:

let config : Config {
    if (target_os == `linux) || (target_os == `macos) {
        .lib_names += [ "m" "stdc++" ]
        .ldflags += "-shared-libgcc"
    }else if target_os == `win32 {
        .lib_names = [ "Gdi32" "User32" "Shell32" "Comdlg32" ]
    }else {
        error("target os not supported")
    }
}

let hello ! : Executable {
    .sources += ./main.cpp
    .configs += config
}

First problem: on Compile Output tab, I found gcc is invoked instead of g++. Why? The project is obviously C++.

Second problem: it's obviously a command line program. Why do you tell it to link with "Gdi32" "User32" "Shell32" "Comdlg32" but not libstdc++? It's definitely not a Windows API GUI application! The result is the program failed to link because missing of symbols from libstdc++. Replace "Gdi32" "User32" "Shell32" "Comdlg32" with "stdc++" then the program could be linked without problems. But why don't use g++ from the beginning? g++ will link with libstdc++ automatically.

Cannot save BUSY files on certain Windows configurations

This is a strange effect and apparently has to do with QFile::rename, which internally makes a copy of the file and then tries to delete the original; even if the procedure closes the file handle of the original the operating system (or some security feature) doesn't let the procedure to remove the file but claims that another process is accessing it.

I found a work-around by no longer using SafeFile for BUSY files on Windows.

New pre-compiled Windows x86 and x64 versions are ready for download.

Cannot open files of type ""

I'm very excited about the LeanQt project, I think it's very cool. But for every single of my projects, I get this error when trying to open the .pro file:

image

Something wrong with MIME type detection, perhaps?.. This is running the pre-built Win x64 version I downloaded via the link in the README.

Compatibility issues with new toolchain versions on Windows

As reported by users LeanCreator doesn't seem to work on Windows with new toolchain versions such as

  • GCC 12 (MSYS2)
  • LLVM 15
  • MSVC 19

I will get hold of a current machine with current versions and investigate the matter. Stay tuned.

On Windows incompatible changes in tool interfaces seem to be more common than I expected. I already found an incompatibility on Mac, so maybe this adds to the list. I try to avoid switchin versions on my development machines as long as possible for stability, reliability and cost reasons.

Build error on MSYS2 UCRT64

C:/msys64/home/Administrator/LeanQt/core/qfilesystemengine_win.cpp:622:16: error: redefinition of 'struct _FILE_ID_INFO'
  622 | typedef struct _FILE_ID_INFO {
      |                ^~~~~~~~~~~~~
In file included from C:/msys64/ucrt64/include/windows.h:70,
                 from C:/msys64/home/Administrator/LeanQt/core/qt_windows.h:55,
                 from C:/msys64/home/Administrator/LeanQt/includes/QtCore/qt_windows.h:1,
                 from C:/msys64/home/Administrator/LeanQt/core/qfilesystemmetadata_p.h:55,
                 from C:/msys64/home/Administrator/LeanQt/core/qfilesystemengine_p.h:50,
                 from C:/msys64/home/Administrator/LeanQt/core/qfilesystemengine_win.cpp:26:
C:/msys64/ucrt64/include/winbase.h:3252:18: note: previous definition of 'struct _FILE_ID_INFO'
 3252 |   typedef struct _FILE_ID_INFO {
      |                  ^~~~~~~~~~~~~
C:/msys64/home/Administrator/LeanQt/core/qfilesystemengine_win.cpp:625:3: error: conflicting declaration 'typedef int FILE_ID_INFO'
  625 | } FILE_ID_INFO, *PFILE_ID_INFO;
      |   ^~~~~~~~~~~~
C:/msys64/ucrt64/include/winbase.h:3255:5: note: previous declaration as 'typedef struct _FILE_ID_INFO FILE_ID_INFO'
 3255 |   } FILE_ID_INFO,*PFILE_ID_INFO;
      |     ^~~~~~~~~~~~
C:/msys64/home/Administrator/LeanQt/core/qfilesystemengine_win.cpp:625:18: error: conflicting declaration 'typedef int* PFILE_ID_INFO'
  625 | } FILE_ID_INFO, *PFILE_ID_INFO;
      |                  ^~~~~~~~~~~~~
C:/msys64/ucrt64/include/winbase.h:3255:19: note: previous declaration as 'typedef struct _FILE_ID_INFO* PFILE_ID_INFO'
 3255 |   } FILE_ID_INFO,*PFILE_ID_INFO;

How to change CXX flag in BUSY file to use C++20?

I created a BUSY Hello World demo and tested it; works as expected.

When I try to use a header file, such as <compare> it cannot suggest it nor does find anything related to it in std:: after I add the header.

If I go in Inspect C++ Code Model, I can see the following:

image

How can I change it to use -std=c++20 and other flags I would like to enable?

Python Error in LLDB on Mac M1 with Xcode Command Line Tools

On my old x86 Mac mini everything works fine. When starting the debugger on my M1 Mac mini the debugger just hangs on startup and the debugger log is below.

I also tried the workaround recommended in https://stackoverflow.com/questions/56687820/qt-creator-fails-to-start-debugging-on-mac with both Python 2 and 3 without success. The x86_64 version running under Rosetta behaves exactly the same.

Maybe there is a difference when running with the full Xcode deployment instead only the command line tools, but this is my Mac mini I use for my music and thus don't want to install arbitrary stuff.

Could anyone please try on their Macs and give feedback whether it works with their configuration, thanks.

sStarting debugger "LldbEngine" for ABI "arm-macos-generic-mach_o-64bit"...
dStart parameters: 'hello' mode: 1
dABI: arm-macos-generic-mach_o-64bit
dLanguages: c++ 
dExecutable: /Users/rochus/Downloads/busy/build-LeanQt-Desktop-Debug/examples/hello 
dDirectory: /Users/rochus/Downloads/busy/build-LeanQt-Desktop-Debug/examples
dDebugger: /Library/Developer/CommandLineTools/usr/bin/lldb
dProject: /Users/rochus/Downloads/busy/LeanQtAddtional Search Directories:
dSysroot: 
dDebug Source Location: 
dDebugger settings: 
dQmlInspector.ShowAppOnTop: false  (default: false)
dBreakOnWarning: false  (default: false)
dBreakOnFatal: false  (default: false)
dBreakOnAbort: false  (default: false)
dShowQmlObjectTree: true  (default: true)
dNoPluginBreakpoints: false  (default: false)
dSelectedPluginBreakpointsPattern: .*  (default: .*)
dBreakOnThrow: false  (default: false)
dBreakOnCatch: false  (default: false)
dAllPluginBreakpoints: true  (default: true)
dSelectedPluginBreakpoints: false  (default: false)
dAdjustBreakpointLocations: true  (default: true)
dMaximalStringLength: 10000  (default: 10000)
dDisplayStringLimit: 100  (default: 100)
dSkipKnownFrames: false  (default: false)
dEnableReverseDebugging: false  (default: false)
dShowStandardNamespace: true  (default: true)
dShowQtNamespace: true  (default: true)
dSortStructMembers: true  (default: true)
dAutoDerefPointers: true  (default: true)
dIdentifyDebugInfoPackages: false  (default: false)
dMaximalStackDepth: 20  (default: 20)
dTargetAsync: false  (default: false)
dWarnOnReleaseBuilds: true  (default: true)
dMultiInferior: false  (default: false)
dIntelFlavor: false  (default: false)
dGdbPostAttachCommands:   (default: )
dWatchdogTimeout: 20  (default: 20)
dAutoEnrichParameters: true  (default: true)
dUseDynamicType: true  (default: true)
dLoadGdbInit: true  (default: true)
dLoadGdbDumpers2: false  (default: false)
dAttemptQuickStart: false  (default: false)
dGdbStartupCommands:   (default: )
dBreakOnCrtDbgReport: false  (default: false)
dCDB_Console: false  (default: false)
dBreakpointCorrection: true  (default: true)
dIgnoreFirstChanceAccessViolation: false  (default: false)
dAdditionalArguments:   (default: )
dSymbolPaths:   (default: )
dSourcePaths:   (default: )
dBreakEvent:   (default: )
dAlwaysAdjustColumnWidths: true  (default: true)
dExtraDumperFile:   (default: )
dGdbCustomDumperCommands:   (default: )
dUseToolTipsInBreakpointsView: false  (default: false)
dUseToolTipsInBreakpointsView: false  (default: true)  ***
dUseAddressInBreakpointsView: false  (default: false)
dUseAddressInStackView: false  (default: false)
dUseCodeModel: true  (default: true)
dShowThreadNames: false  (default: false)
dUseToolTips: true  (default: true)
dUseToolTipsInLocalsView: false  (default: false)
dBreakpointsFullPath: false  (default: false)
dRaiseOnInterrupt: true  (default: true)
dStationaryEditorWhileStepping: false  (default: false)
dUseDebuggingHelper: true  (default: true)
dCloseBuffersOnExit: false  (default: false)
dCloseMemoryBuffersOnExit: true  (default: true)
dSwitchModeOnExit: false  (default: false)
dAutoQuit: false  (default: false)
dLogTimeStamps: false  (default: false)
dVerboseLog: false  (default: false)
dUseAlternatingRowColours: false  (default: false)
dFontSizeFollowsEditor: false  (default: false)
dUseMessageBoxForSignals: true  (default: true)
dState changed from DebuggerNotReady(0) to EngineSetupRequested(1) [master]
dQUEUE: SETUP ENGINE
dCALL: SETUP ENGINE
dSTARTING LLDB: /Library/Developer/CommandLineTools/usr/bin/lldb

>(lldb) sc print('@\nlldbstartupok@\n')

>@
>lldbstartupok@
>
dADAPTER STARTED
sSetting up inferior...
>(lldb) script sys.path.insert(1, '/var/folders/86/95rc7rvs2_z7x7wlzbhnys9h0000gn/T/LeanCreator-Cw57Iw/')
>(lldb) script from lldbbridge import *
>(lldb) script print(dir())
>['Array10000Format', 'Array1000Format', 'Array100Format', 'Array10Format', 'ArrayPlotFormat', 'AttachCore', 'AttachCrashedExternal', 'AttachExternal', 'AttachToRemoteProcess', 'AttachToRemoteServer', 'AutomaticFormat', 'Base64Encoded16Bit', 'Base64Encoded16BitWithQuotes', 'Base64Encoded32BitWithQuotes', 'Base64Encoded8Bit', 'Base64Encoded8BitWithQuotes', 'Blob', 'BreakpointAtCatch', 'BreakpointAtExec', 'BreakpointAtFork', 'BreakpointAtJavaScriptThrow', 'BreakpointAtMain', 'BreakpointAtSysCall', 'BreakpointAtThrow', 'BreakpointByAddress', 'BreakpointByFileAndLine', 'BreakpointByFunction', 'BreakpointOnQmlSignalEmit', 'Children', 'CompactMapFormat', 'DateTimeInternal', 'DirectQListStorageFormat', 'DisplayImageData', 'DisplayImageFile', 'DisplayLatin1String', 'DisplayPlotData', 'DisplayUtf16String', 'DisplayUtf8String', 'Dumper', 'DumperBase', 'EnhancedFormat', 'Hex2EncodedFloat4', 'Hex2EncodedFloat8', 'Hex2EncodedInt1', 'Hex2EncodedInt2', 'Hex2EncodedInt4', 'Hex2EncodedInt8', 'Hex2EncodedLatin1', 'Hex2EncodedLocal8Bit', 'Hex2EncodedUInt1', 'Hex2EncodedUInt2', 'Hex2EncodedUInt4', 'Hex2EncodedUInt8', 'Hex2EncodedUtf8', 'Hex2EncodedUtf8WithoutQuotes', 'Hex4EncodedBigEndian', 'Hex4EncodedLittleEndian', 'Hex4EncodedLittleEndianWithoutQuotes', 'Hex8EncodedBigEndian', 'Hex8EncodedLittleEndian', 'IPv6AddressAndHexScopeId', 'IndirectQListStorageFormat', 'JulianDate', 'JulianDateAndMillisecondsSinceMidnight', 'Latin1StringFormat', 'Local8BitStringFormat', 'MillisecondsSinceMidnight', 'NoAddress', 'NoStartMode', 'PairedChildren', 'PairedChildrenData', 'RawFormat', 'ReportItem', 'SeparateFormat', 'SeparateLatin1StringFormat', 'SeparateUtf8StringFormat', 'SimpleFormat', 'SpecialEmptyStructureValue', 'SpecialEmptyValue', 'SpecialInvalidValue', 'SpecialItemCountValue', 'SpecialMinimumItemCountValue', 'SpecialNotAccessibleValue', 'SpecialNotCallableValue', 'SpecialNullReferenceValue', 'SpecialOptimizedOutValue', 'SpecialUninitializedValue', 'StartExternal', 'StartInternal', 'StartRemoteProcess', 'StopDisplay', 'SubItem', 'Tester', 'TopLevelItem', 'Ucs4StringFormat', 'Unencoded8Bit', 'UnknownType', 'UnnamedSubItem', 'Utf16StringFormat', 'Utf8StringFormat', 'Value', 'WatchpointAtAddress', 'WatchpointAtExpression', '__builtins__', 'arrayForms', 'base64', 'check', 'copy', 'fileNameAsString', 'impl_SBValue__add__', 'impl_SBValue__deref', 'impl_SBValue__float__', 'impl_SBValue__getitem__', 'impl_SBValue__int__', 'impl_SBValue__le__', 'impl_SBValue__long__', 'impl_SBValue__sub__', 'inspect', 'json', 'keyword', 'lldb', 'mapForms', 'os', 'platform', 'pydoc', 'qqWatchpointOffset', 're', 'reload_module', 'run_one_line', 'run_python_interpreter', 'showException', 'struct', 'sys', 'threading', 'time', 'toInteger', 'uuid', 'verbosity', 'warn', 'xrange']
>(lldb) script theDumper = Dumper()
eERROR: Lldb stderr: error: cannot delete one or more categories
eerror: cannot delete one or more categories
>@
>lldbversion="lldb-1316.0.9.41
>Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)"@
>@
>state="enginesetupok"@
dNOTE: ENGINE SETUP OK
dState changed from EngineSetupRequested(1) to EngineSetupOk(3) [master]
dQUEUE: SETUP INFERIOR
dState changed from EngineSetupOk(3) to InferiorSetupRequested(4) [master]
dQUEUE: SETUP INFERIOR
dCALL: SETUP INFERIOR
<1executeDebuggerCommand({"command":"settings set target.env-vars BUSY_RUN_FILE_PATH=/Users/rochus/Downloads/busy/build-LeanQt-Desktop-Debug/examples/hello","token":1})
<2executeDebuggerCommand({"command":"settings set target.env-vars PATH=/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","token":2})
<3loadDumpers({"token":3})
<4setupInferior({"attachpid":-1,"breakonmain":0,"dyldframeworkpath":"","dyldimagesuffix":"","dyldlibrarypath":"","executable":"/Users/rochus/Downloads/busy/build-LeanQt-Desktop-Debug/examples/hello","nativemixed":0,"platform":"","processargs":[],"remotechannel":"","startmode":1,"sysroot":"","token":4,"useterminal":0})
>(lldb) script theDumper.executeDebuggerCommand({"command":"settings set target.env-vars BUSY_RUN_FILE_PATH=/Users/rochus/Downloads/busy/build-LeanQt-Desktop-Debug/examples/hello","token":1})
>@
>token("1")@
>@
>success="1",output="",error=""@
>(lldb) script theDumper.executeDebuggerCommand({"command":"settings set target.env-vars PATH=/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin","token":2})
>@
>token("2")@
>@
>success="1",output="",error=""@
>(lldb) script theDumper.loadDumpers({"token":3})
>@
>result={token="3",dumpers=[{type="QVariant (QVariantMap)",formats="17"},{type="QAtomicInt"},{type="QBasicAtomicInt"},{type="QAtomicPointer"},{type="QByteArray",formats="5, 6, 7, 8"},{type="QByteArrayData"},{type="QChar"},{type="QAbstractItemModel",formats="2, 3"},{type="QModelIndex",formats="2, 3"},{type="QDate"},{type="QTime"},{type="QTimeZone"},{type="QDateTime"},{type="QDir"},{type="QFile"},{type="QFileInfo"},{type="QFixed"},{type="QFiniteStack",formats="16"},{type="QFlags"},{type="QHash",formats="17"},{type="QHashNode",formats="17"},{type="QHash__const_iterator"},{type="QHash__iterator"},{type="QHostAddress"},{type="QIPv6Address"},{type="QList",formats="18, 19"},{type="QImage",formats="2, 4"},{type="QLinkedList"},{type="QLocale"},{type="QMapNode"},{type="QMap",formats="17"},{type="QMultiMap",formats="17"},{type="QVariantMap",formats="17"},{type="QMetaObjectPrivate"},{type="QMetaObject"},{type="QPixmap"},{type="QPoint"},{type="QPointF"},{type="QRect"},{type="QRectF"},{type="QRegExp"},{type="QRegion"},{type="QScopedPointer"},{type="QSet"},{type="QSharedData"},{type="QSharedDataPointer"},{type="QSharedPointer"},{type="QSize"},{type="QSizeF"},{type="QStack",formats="16"},{type="QPolygonF"},{type="QPolygon"},{type="QGraphicsPolygonItem"},{type="QStandardItem"},{type="QString",editable="true",formats="2, 4"},{type="QStringData"},{type="QHashedString"},{type="QQmlRefCount"},{type="QStringRef"},{type="QStringList"},{type="QTemporaryFile"},{type="QTextCodec"},{type="QTextCursor"},{type="QTextDocument"},{type="QUrl",formats="2, 4"},{type="QUuid"},{type="QVariant"},{type="QVector",editable="true",formats="16"},{type="QVarLengthArray"},{type="QWeakPointer"},{type="QXmlAttributes"},{type="QXmlStreamStringRef"},{type="QXmlStreamAttribute"},{type="QV4__Object"},{type="QV4__FunctionObject"},{type="QV4__CompilationUnit"},{type="QV4__CallContext"},{type="QV4__ScriptFunction"},{type="QV4__SimpleScriptFunction"},{type="QV4__ExecutionContext"},{type="QV4__TypedValue"},{type="QV4__CallData"},{type="QV4__String"},{type="QV4__Value"},{type="QTJSC__JSValue"},{type="QScriptValue"},{type="QQmlAccessorProperties__Properties"},{type="QJsonPrivate__qle_bitfield"},{type="QJsonPrivate__qle_signedbitfield"},{type="QJsonPrivate__q_littleendian"},{type="QJsonValue"},{type="QJsonArray"},{type="QJsonObject"},{type="std__array",formats="16"},{type="std____1__array",formats="16"},{type="std__complex"},{type="std__deque"},{type="std__deque__QNX"},{type="std____debug__deque"},{type="std__list"},{type="std__list__QNX"},{type="std____debug__list"},{type="std____cxx11__list"},{type="std__map",formats="17"},{type="std__map__QNX"},{type="std____debug__map"},{type="std____debug__set"},{type="std__multiset"},{type="std____cxx1998__map"},{type="std__multimap",formats="17"},{type="std___Rb_tree_iterator"},{type="std___Rb_tree_const_iterator"},{type="std__map__iterator"},{type="__gnu_debug___Safe_iterator"},{type="std__map__const_iterator"},{type="std__set__iterator"},{type="std__set__const_iterator"},{type="std____cxx1998__set"},{type="std__set"},{type="std__set__QNX"},{type="std____1__set"},{type="std__stack"},{type="std____debug__stack"},{type="std__string",editable="true",formats="5, 6, 7, 8"},{type="std__stringHelper1"},{type="std__stringHelper1__QNX"},{type="std____1__string"},{type="std____1__wstring"},{type="std__shared_ptr"},{type="std____1__shared_ptr"},{type="std__unique_ptr"},{type="std____1__unique_ptr"},{type="std__unordered_map",formats="17"},{type="std____debug__unordered_map",formats="17"},{type="std__unordered_set"},{type="std____1__unordered_map",formats="17"},{type="std____1__unordered_set"},{type="std____debug__unordered_set"},{type="std__vector",editable="true",formats="16"},{type="std__vector__QNX"},{type="std____1__vector"},{type="std____debug__vector",formats="16"},{type="string",editable="true"},{type="std__wstring",formats="2, 4"},{type="std__basic_string"},{type="std____cxx11__basic_string"},{type="std____cxx11__string",formats="5, 6, 7, 8"},{type="std____cxx11__wstring",formats="2, 4"},{type="std____1__basic_string"},{type="wstring"},{type="__gnu_cxx__hash_set"},{type="uint8_t"},{type="int8_t"},{type="__m128"},{type="__m256"},{type="__m512"},{type="__m128d"},{type="__m256d"},{type="__m512d"},{type="__m128i"},{type="__m256i"},{type="__m512i"},{type="Eigen__Matrix"},{type="KDSoapValue1"},{type="KDSoapValue"},{type="boost__bimaps__bimap"},{type="boost__optional"},{type="boost__shared_ptr"},{type="boost__container__list"},{type="boost__gregorian__date"},{type="boost__posix_time__ptime"},{type="boost__posix_time__time_duration"},{type="boost__unordered__unordered_set"},{type="Core__Id"},{type="Debugger__Internal__GdbMi"},{type="Debugger__Internal__DisassemblerLine"},{type="Debugger__Internal__WatchData"},{type="Debugger__Internal__WatchItem"},{type="Debugger__Internal__BreakpointModelId"},{type="Debugger__Internal__ThreadId"},{type="CPlusPlus__ByteArrayRef"},{type="CPlusPlus__Identifier"},{type="CPlusPlus__Symbol"},{type="CPlusPlus__Class"},{type="CPlusPlus__IntegerType"},{type="CPlusPlus__FullySpecifiedType"},{type="CPlusPlus__NamedType"},{type="CPlusPlus__PointerType"},{type="CPlusPlus__TemplateNameId"},{type="CPlusPlus__QualifiedNameId"},{type="CPlusPlus__Literal"},{type="CPlusPlus__StringLiteral"},{type="CPlusPlus__Internal__Value"},{type="Utils__FileName"},{type="Utils__ElfSection"},{type="CPlusPlus__Token"},{type="CPlusPlus__Internal__PPToken"},{type="ProString"},]}@
>3^
>(lldb) script theDumper.setupInferior({"attachpid":-1,"breakonmain":0,"dyldframeworkpath":"","dyldimagesuffix":"","dyldlibrarypath":"","executable":"/Users/rochus/Downloads/busy/build-LeanQt-Desktop-Debug/examples/hello","nativemixed":0,"platform":"","processargs":[],"remotechannel":"","startmode":1,"sysroot":"","token":4,"useterminal":0})

>@
>result={token="4",success="1",msg="success",exe="/Users/rochus/Downloads/busy/build-LeanQt-Desktop-Debug/examples/hello"}@
>4^
dNOTE: INFERIOR SETUP OK
dState changed from InferiorSetupRequested(4) to InferiorSetupOk(6) [master]
dState changed from InferiorSetupOk(6) to EngineRunRequested(7) [master]
dQUEUE: RUN ENGINE
dCALL: RUN ENGINE
sRunning requested...
<5runEngine({"token":5})
>(lldb) script theDumper.runEngine({"token":5})
>Traceback (most recent call last):
>  File "<input>", line 1, in <module>
>  File "/var/folders/86/95rc7rvs2_z7x7wlzbhnys9h0000gn/T/LeanCreator-Cw57Iw/lldbbridge.py", line 708, in runEngine
>    self.prepare(args)
>  File "/var/folders/86/95rc7rvs2_z7x7wlzbhnys9h0000gn/T/LeanCreator-Cw57Iw/lldbbridge.py", line 744, in prepare
>    launchInfo = lldb.SBLaunchInfo(self.processArgs_)
>  File "/Library/Developer/CommandLineTools/Library/PrivateFrameworks/LLDB.framework/Resources/Python/lldb/__init__.py", line 6660, in __init__
>    _lldb.SBLaunchInfo_swiginit(self, _lldb.new_SBLaunchInfo(argv))
>TypeError: not a list
`

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.