Jump to content

Factor

Members
  • Content Count

    6
  • Joined

  • Last visited

About Factor

  • Rank
    Newbie

Profile Information

  • Github
    danilloestrela

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. @meko Still, i got this code into src/common/cbasetypes.h It gave me the same response:
  2. Don't seem to work for me. I keep getting errors you can see in this post: https://github.com/HerculesWS/Hercules/issues/2694 It seems to have some "Bus error" in login-server. Did tests with gdb and nothing seems to fit. This led me to ask if this is really working....
  3. Hello! I'm using Ubuntu 20 Focal fossa in my Raspberry Pi 3B+. I installed a Ubuntu mate (18.01) in the raspberry and the same error occurred. My uname below: Is there any forecast for updating the emulator for this type of system?
  4. With the help of @4144 I got to a possible solution: Open common folder $ cd $ cd Hercules/src/common Edit atomic.h with your text editor: $ sudo vim atomic.h or $ sudo nano atomic.h Go to the line 159 or locate this line of code: // The __sync functions are available on x86 or ARMv6+ #if !defined(__x86_64__) && !defined(__i386__) \ && ( !defined(__ARM_ARCH_VERSION__) || __ARM_ARCH_VERSION__ < 6 ) #error Your Target Platfrom is not supported #endif Comment this line: #error Your Target Platfrom is not supported It will be like this: // The __sync functions are available on x86 or ARMv6+ #if !defined(__x86_64__) && !defined(__i386__) \ && ( !defined(__ARM_ARCH_VERSION__) || __ARM_ARCH_VERSION__ < 6 ) //#error Your Target Platfrom is not supported #endif Go back to Hercules folder: $ cd $ cd Hercules $ make clean $ make sql Leave comments here, but for now I think its solved!
  5. Hi! Thanks for the reply. The response you ask me was as bellow: What else do I need to do to make it work?
  6. hello guys! I'm having an error while I try to make sql after ./configure command in my ubuntu mate. The result and error i get: Anyone can help me to make it work? HPM.o is the problem
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.