Skip to Main Content
IBM Z Software


This portal is to open public enhancement requests against IBM Z Software products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Delivered
Categories z/TPF
Created by Guest
Created on Aug 28, 2020

Certify newest Dignus compilers: v2.25

Our Developers have a requirement to start using the Dignus v2.25 compilers. We need to have these certified by the TPF Lab so they can start using the latest features of C and C++.

Idea priority Medium
  • Guest
    Reply
    |
    Feb 25, 2022

    z/TPF APAR PJ46531 updates the z/TPF product to be compatible with Dignus V2.25.

  • Guest
    Reply
    |
    Sep 21, 2020

    Below is the complete response from one of our developers:

    One feature that I'd like to use is “static asserts”.
    When the –fc11 option is enabled, the compiler supports the ANSI C11 Static assert declaration. This declaration is used to accomplish a compile-time assertion, that if false, causes an error message. A Static assert declaration has the syntax: Static assert ( constant-expression , string-literal ) ; Where constant-expression is a compile-time integral constant expression, and stringliteral is a compile-time string literal. The compiler will evaluate the constant-expression, if it has the value 0 then an error message is produced that includes the text from string-literal. For example: _Static_assert( sizeof(int) == 4, "sizeof(int) must be 4"); will produce a compile-time error diagnostic if the size of int is not 4.

    Shouldn't it be our policy to use relatively current versions of program products including the Dignus C & C++ compilers? Seems IBM is saying that the only reason to move to a newer compiler is because there's a particular feature in that new version that's not available in the currently in use version. If that was the case, we'd never upgrade to a new version. We'd always find a work around for that feature because it takes too long to wait ‘till a new version is approved and installed.