Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 708635
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T04:24:47+00:00 2026-05-14T04:24:47+00:00

Problem: I am using a big C/C++ code base which works on gcc &

  • 0

Problem:

I am using a big C/C++ code base which works on gcc & visual studio compilers where enum base type is by default 32-bit(integer type).

This code also has lots of inline + embedded assembly which treats enum as integer type and enum data is used as 32-bit flags in many cases.

When compiled this code with realview ARM RVCT 2.2 compiler, we started getting many issues since realview compiler decides enum base type automatically based on the value an enum is set to. http://www.keil.com/support/man/docs/armccref/armccref_Babjddhe.htm

For example,

Consider the below enum,

enum Scale {
    TimesOne, //0
    TimesTwo, //1
    TimesFour, //2
    TimesEight, //3
};

This enum is used as a 32-bit flag. but compiler optimizes it to unsigned char type for this enum.

Using –enum_is_int compiler option is not a good solution for our case, since it converts all the enum’s to 32-bit which will break interaction with any external code compiled without –enum_is_int.

This is warning i found in RVCT compilers & Library guide,

The –enum_is_int option is not
recommended for general use and is not
required for ISO-compatible source.
Code compiled with this option is not
compliant with the ABI for the ARM
Architecture (base standard) [BSABI],
and incorrect use might result in a
failure at runtime. This option is not
supported by the C++ libraries.

Question

How to convert all enum’s base type (by hand-coded changes) to use 32-bit without affecting value ordering?

enum Scale {
    TimesOne=0x00000000,
    TimesTwo, // 0x00000001
    TimesFour, // 0x00000002
    TimesEight, //0x00000003
};

I tried the above change. But compiler optimizes this also for our bad luck. 🙁

There is some syntax in .NET like

enum Scale: int

Is this a ISO C++ standard and ARM compiler lacks it?

There is no #pragma to control this enum in ARM RVCT 2.2 compiler. Is there any hidden pragma available ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T04:24:48+00:00Added an answer on May 14, 2026 at 4:24 am

    I know that a lot of the windows headers use the following:

    enum SOME_ENUM {
        ONE = 1,
        TWO = 2,
        //...
        FORCE_DWORD = 0x7FFFFFFF
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 386k
  • Answers 386k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer At this line: exec(sprintf('ping -n 4', escapeshellarg($host)), $res, $rval); sprintf… May 14, 2026 at 11:54 pm
  • Editorial Team
    Editorial Team added an answer Try changing for (loop in myArray) to for (var loop=0;… May 14, 2026 at 11:54 pm
  • Editorial Team
    Editorial Team added an answer Since it's HTML, you probably want the XPath module made… May 14, 2026 at 11:54 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.