Giter Site home page Giter Site logo

make error about easyflash HOT 9 CLOSED

UTilitieeees avatar UTilitieeees commented on June 17, 2024
make error

from easyflash.

Comments (9)

UTilitieeees avatar UTilitieeees commented on June 17, 2024 1

The trick was: brew install wxWidgets

from easyflash.

jamarju avatar jamarju commented on June 17, 2024

Do you have spaces in your pathnames? Make hates them.

from easyflash.

UTilitieeees avatar UTilitieeees commented on June 17, 2024

Oh, yes :-)

Changed... now an other error:

Warning: No config found to match: /usr/local/bin/wx-config --static --libs

The reason is... I can't install it with "--with-static" option because of this error:
"Error: invalid option: --with-static"

from easyflash.

UTilitieeees avatar UTilitieeees commented on June 17, 2024

/Applications/Xcode.app/Contents/Developer/usr/bin/make -C src/d64writer/
ca65 -t c64 -Isrc -I../../../libs/libef3usb/src -I../../../libs/eload/src -o obj/crt0.o src/crt0.s
make[1]: ca65: No such file or directory
make[1]: *** [obj/crt0.o] Error 1
make: *** [src/d64writer/d64writer.prg] Error 2

from easyflash.

UTilitieeees avatar UTilitieeees commented on June 17, 2024

Ok, cc65 was not installed.

Next Error:

/Applications/Xcode.app/Contents/Developer/usr/bin/make -C src/d64writer/
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C ../../../libs/libef3usb/
make[2]: Nothing to be done for all'. /Applications/Xcode.app/Contents/Developer/usr/bin/make -C ../../../libs/eload/ make[2]: Nothing to be done for all'.
convert src/../res/easytransfer.png /Applications/EasyFlash3/easyflash-master/EasyTransfer/out/obj/easytransfer.xpm.tmp.xpm
make: convert: No such file or directory
make: *** [/Applications/EasyFlash3/_Tools_also_MacOS/easyflash-master/EasyTransfer/out/obj/easytransfer.xpm] Error 1

from easyflash.

jamarju avatar jamarju commented on June 17, 2024

convert is part of the imagemagick package. Do:

brew install imagemagick

It's actually in the README under the Cross dev tools... title

from easyflash.

jamarju avatar jamarju commented on June 17, 2024

Closing, please reopen if there's still any issue after closely following the directions and thanks for your feedback.

from easyflash.

fortiko avatar fortiko commented on June 17, 2024

also, now with Ventura removing python2, this is the python3 compatible version for easyflash/EasyTransfer/make/bin2c.py

#!/usr/bin/env python3
import sys


if __name__ == '__main__':
    if len(sys.argv) == 4:
        if sys.argv[1] == '-':
            instream = sys.stdin
        else:
            instream = open(sys.argv[1],'rb')
        if sys.argv[2] == '-':
            outstream = sys.stdout
        else:
            outstream = open(sys.argv[2], 'wt')
        varname = sys.argv[3]
    else:
        print("Usage: bin2c infile outfile varname")
        sys.exit(0)

    outstream.write("\n\nconst unsigned char %s[] = {\n    " % varname)
    written = 0
    while True:
        byte = instream.read(1)
        if len(byte) != 1:
            break
        outstream.write( "0x%.2x, " % ord(byte) )
        written += 1
        if written % 16 == 0:
            outstream.write( "\n    " )
    outstream.write("\n};\n")
    outstream.write("\nint %s_size = %i;\n\n" % (varname, written))

    sys.exit(0)

from easyflash.

jamarju avatar jamarju commented on June 17, 2024

Thank you! Would you mind sending a PR and I'll merge it?

from easyflash.

Related Issues (3)

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.